KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > beans > relation > lcp > SIMPLEPARENTLocal


1 package org.objectweb.jonas.jtests.beans.relation.lcp;
2
3
4
5 public interface SIMPLEPARENTLocal extends javax.ejb.EJBLocalObject JavaDoc {
6
7     String JavaDoc getSpDesc();
8     void setSpDesc(String JavaDoc var);
9
10     /*****************************************************************************
11      *
12      * Retrieves SIMPLECHILDLocal relationship data
13      *
14      *****************************************************************************/

15     abstract java.util.Collection JavaDoc getSimpleparentSimplechild() ;
16
17     /*****************************************************************************
18      *
19      * Sets SIMPLECHILDLocal relationship data
20      *
21      *****************************************************************************/

22     abstract void setSimpleparentSimplechild(java.util.Collection JavaDoc var) ;
23
24 }
25
Popular Tags