Xesevi

File

Jul 6th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1.  
  2. public class File extends Elm {
  3.   private String content;
  4.  
  5. public File(String name, String content) {
  6.     super(name);
  7.     this.content = content;
  8. }
  9.  
  10. @Override
  11. public void show() {
  12.     System.out.println(content);
  13.    
  14. }
  15. }
Add Comment
Please, Sign In to add comment