1 9 package test.simple; 10 11 import org.ozoneDB.OzoneRemote; 12 13 14 public interface Auto extends OzoneRemote { 15 16 public void print(); 17 18 public void setName(String newName); 19 20 public String name(); 21 22 public String nameName() throws Exception ; 23 24 public void setAge(Integer newAge) throws Exception ; 25 26 public int setAge(int newAge) throws Exception ; 27 28 public Integer age() throws Exception ; 29 30 public Auto doSomthing(Auto auto) throws Exception ; 31 32 public Auto setLink(Auto auto) throws Exception ; 33 34 public Auto link() throws Exception ; 35 36 public String toString(); 37 } 38 | Popular Tags |