1 22 package org.jboss.iiop.test; 23 24 import java.rmi.RemoteException ; 25 26 public class TestImpl 27 implements Test 28 { 29 public Test aa1() throws RemoteException 30 { return null; } 31 32 public TestValue aa2() throws RemoteException 33 { return null; } 34 35 public Object aa3() throws RemoteException 36 { return null; } 37 38 public java.io.Serializable aa4() throws RemoteException 39 { return null; } 40 41 public java.io.Externalizable aa5() throws RemoteException 42 { return null; } 43 44 public java.rmi.Remote aa6() throws RemoteException 45 { return null; } 46 47 public String jack(String arg) throws RemoteException 48 { return "jack:" + arg; } 49 50 public String Jack(String arg) throws RemoteException 51 { return "Jack:" + arg; } 52 53 public String jAcK(String arg) throws RemoteException 54 { return "jAcK:" + arg; } 55 56 59 public Object getObjectValue() throws RemoteException 60 { 61 return null; 62 } 63 64 65 68 public int getValue() throws RemoteException 69 { 70 return 0; 71 } 72 73 76 public void setValue(int value) throws RemoteException 77 { 78 } 79 80 83 public TestValue[][] addNumbers(int[] numbers, 84 boolean b, char c, byte by, short s, 85 int i, long l, float f, double d, 86 java.rmi.Remote rem, 87 TestValue val, Test intf, 88 String str, Object obj, Class cls, 89 java.io.Serializable ser, 90 java.io.Externalizable ext) 91 throws TestException, RemoteException 92 { 93 return null; 94 } 95 } 96 | Popular Tags |