1 25 26 28 package org.objectweb.jonas.jtests.beans.ebasic; 29 30 import java.rmi.RemoteException ; 31 import javax.ejb.EJBObject ; 32 33 public interface E4Query extends EJBObject { 34 public String getId() throws RemoteException ; 35 public String getFstring() throws RemoteException ; 36 public void setFstring(String s) throws RemoteException ; 37 public int getFint() throws RemoteException ; 38 public void setFint(int i) throws RemoteException ; 39 public double getFdouble() throws RemoteException ; 40 public void setFdouble(double d) throws RemoteException ; 41 } 42 | Popular Tags |