01: package org.objectweb.jonas.jtests.beans.relation.lcp;
02:
03: public interface SIMPLEPARENTLocal extends javax.ejb.EJBLocalObject {
04:
05: String getSpDesc();
06:
07: void setSpDesc(String var);
08:
09: /*****************************************************************************
10: *
11: * Retrieves SIMPLECHILDLocal relationship data
12: *
13: *****************************************************************************/
14: abstract java.util.Collection getSimpleparentSimplechild();
15:
16: /*****************************************************************************
17: *
18: * Sets SIMPLECHILDLocal relationship data
19: *
20: *****************************************************************************/
21: abstract void setSimpleparentSimplechild(java.util.Collection var);
22:
23: }
|