Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication28;
- /**
- *
- * @author fmi
- */
- public class JavaApplication28 {
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- // TODO code application logic here
- StorageDeviceInterface storageDevice;
- // storageDevice = new StorageDeviceDeafult();
- storageDevice = new Hdd();
- storageDevice = new Ssd();
- storageDevice = new Usb();
- OperatingSystem myWindoze = new OperatingSystem(storageDevice);
- System.out.println(myWindoze.read());
- System.out.println(myWindoze.write("Stoyan"));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement