1 22 package org.jboss.iiop.test; 23 24 import java.rmi.RemoteException ; 25 26 28 public interface Test extends TestBase { 30 public final String const2 = "abc"; 31 32 public Test aa1() throws RemoteException ; 33 public TestValue aa2() throws RemoteException ; 34 public Object aa3() throws RemoteException ; 35 public java.io.Serializable aa4() throws RemoteException ; 36 public java.io.Externalizable aa5() throws RemoteException ; 37 public java.rmi.Remote aa6() throws RemoteException ; 38 39 public String jack(String arg) throws RemoteException ; 40 public String Jack(String arg) throws RemoteException ; 41 public String jAcK(String arg) throws RemoteException ; 42 43 46 public int getValue() throws RemoteException ; 47 48 51 public void setValue(int value) throws RemoteException ; 52 53 56 public TestValue[][] addNumbers(int[] numbers, 57 boolean b, char c, byte by, short s, 58 int i, long l, float f, double d, 59 java.rmi.Remote rem, 60 TestValue val, Test intf, 61 String str, Object obj, Class cls, 62 java.io.Serializable ser, 63 java.io.Externalizable ext) 64 throws TestException, RemoteException ; 65 } 66 | Popular Tags |