1 25 26 28 package org.objectweb.jonas.jtests.beans.inherit; 29 30 import java.rmi.*; 31 import javax.ejb.*; 32 33 public interface Person extends EJBObject { 34 public int getAge() throws RemoteException; 35 public void setAge(int a) throws RemoteException; 36 public String getValue(int i) throws RemoteException; 38 39 public static class InnerClass { 41 public void test() {}; 42 } 43 public static class ExceptionInnerClass extends Exception { 44 } 45 public void setTestInnerClass(InnerClass ic) throws RemoteException, ExceptionInnerClass; 46 public InnerClass getTestInnerClass() throws RemoteException; 47 48 } 49 | Popular Tags |