1 3 import org.ozoneDB.*; 4 5 6 public interface Auto extends OzoneRemote { 7 8 9 public void print(); 10 11 12 public void setName( String newName ); 14 15 public String name(); 16 17 18 public void setAge( Integer newAge ) throws Exception ; 19 20 21 public int setAge( int newAge ) throws Exception ; 22 23 24 public Integer age() throws Exception ; 25 26 27 public Auto doSomething( Auto auto ) throws Exception ; 28 } 29 | Popular Tags |