inheritance-demo
Adult.java
Go to the documentation of this file.
00001 package ee_inheritance_et_al.aa_inheritance;
00002 class Adult extends Person {
00003     
00004     private String employer ;
00005 
00006     public String getEmployer() { return this.employer ; }
00007 
00008     public void setEmployer( String employer ) { 
00009         this.employer = employer ;
00010     }
00011     
00012     void aMethod() {
00013         System.out.println( this.getAge() ) ;
00014     }
00015     
00016 }
00017 
00018