1 9 package test.args; 10 11 import org.ozoneDB.DxLib.DxBag; 12 import org.ozoneDB.OzoneRemote; 13 14 15 16 public interface Args extends OzoneRemote { 17 18 19 public void setup() throws Exception ; 20 21 22 public Args getProxy(); 23 24 25 public DxBag getComplexProxy(); 26 27 28 public String setSimpleObject(String arg); 29 30 31 public DxBag setComplexObject(DxBag arg); 32 33 34 public int setInt(int arg); 35 36 37 public short setShort(short arg); 38 39 40 public int[] setIntArray(int[] arg); 41 42 43 public String [][] setStringArray(String [][] arg); 44 } 45 | Popular Tags |