inheritance-demo
Test.java
Go to the documentation of this file.
00001 package ee_inheritance_et_al.aa_inheritance;
00002 class Test {
00003     public static void main  ( String[] args ) {
00004 
00005         Adult mueller = new Adult() ;
00006         mueller.setAge(30); 
00007         mueller.setEmployer("c&a") ;
00008 
00009         System.out.println( " age: " + mueller.getAge() 
00010                 + " employer: " + mueller.getEmployer() ) ;
00011         
00012     }
00013 }
00014