1 9 package test.simple; 10 11 import org.ozoneDB.DxLib.DxInteger; 12 import org.ozoneDB.OzoneRemote; 13 14 15 public interface Garage extends OzoneRemote { 16 17 18 public void print(); 19 20 21 public void printAll() throws Exception ; 22 23 24 public Auto[] getAll() throws Exception ; 25 26 27 public int[] _setAll(Auto a0, int[] a1, Integer [] a2) throws Exception ; 28 29 30 public void _addAuto(Auto auto) throws Exception ; 31 32 33 public void _newAuto(String name) throws Exception ; 34 35 36 public void _populate(Integer num) throws Exception ; 37 38 39 public Auto autoForName(String search); 40 41 42 public void setAlter(DxInteger alter) throws Exception ; 43 44 45 public void crunch(DxInteger num) throws Exception ; 46 47 48 public void _lockThis() throws Exception ; 49 50 51 public void _langeTA(Garage garage) throws Exception ; 52 } 54 | Popular Tags |