inheritance-demo
Person.java
Go to the documentation of this file.
00001 package ee_inheritance_et_al.aa_inheritance;
00002 
00003 class Person {
00004 
00005     private double age ;
00006     
00007     double getAge() { 
00008         return age ; 
00009     }
00010 
00011     void setAge( int age ) { 
00012         this.age = age ;
00013     }
00014     
00015 }
00016 
00017