1 package org.objectweb.jonas.jtests.beans.relation.lcp;2 3 4 5 public interface SIMPLEPARENTLocal extends javax.ejb.EJBLocalObject {6 7 String getSpDesc();8 void setSpDesc(String var);9 10 /*****************************************************************************11 *12 * Retrieves SIMPLECHILDLocal relationship data13 *14 *****************************************************************************/15 abstract java.util.Collection getSimpleparentSimplechild() ;16 17 /*****************************************************************************18 *19 * Sets SIMPLECHILDLocal relationship data20 *21 *****************************************************************************/22 abstract void setSimpleparentSimplechild(java.util.Collection var) ;23 24 }25