Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Admin extends User {
  2.     public Admin() {
  3.         size = 12;
  4.     }
  5. }
  6.  
  7. public class User {
  8.     public final int size;
  9.  
  10.     public User() {
  11.         size = 10;
  12.     }
  13.  
  14.     protected int getSize() {
  15.         return size;
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement