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