KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.objectweb.jonas.jtests.beans.relation.lcp;
2
3
4 public interface SIMPLECHILDLocal extends javax.ejb.EJBLocalObject JavaDoc {
5
6     String JavaDoc getScDesc();
7     void setScDesc(String JavaDoc var);
8
9     /*****************************************************************************
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 }
24
Popular Tags