Advertisement
wingman007

Java - JavaApplication28 JavaApplication28.java

Dec 7th, 2013
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.76 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication28;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class JavaApplication28 {
  12.  
  13.     /**
  14.      * @param args the command line arguments
  15.      */
  16.     public static void main(String[] args) {
  17.         // TODO code application logic here
  18.         StorageDeviceInterface storageDevice;
  19.        
  20.         // storageDevice = new StorageDeviceDeafult();
  21.         storageDevice = new Hdd();
  22.         storageDevice = new Ssd();
  23.         storageDevice = new Usb();
  24.         OperatingSystem myWindoze = new OperatingSystem(storageDevice);
  25.        
  26.         System.out.println(myWindoze.read());
  27.         System.out.println(myWindoze.write("Stoyan"));
  28.        
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement