KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > cmp2 > fkmapping > ejb > ChildLocal


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package org.jboss.test.cmp2.fkmapping.ejb;
5
6 /**
7  * Local interface for Child.
8  */

9 public interface ChildLocal
10    extends javax.ejb.EJBLocalObject JavaDoc
11 {
12
13    public java.lang.Long JavaDoc getId( ) ;
14
15    public java.lang.String JavaDoc getFirstName( ) ;
16
17    /**
18     * Non-null CMP field mapped to the foreign key field Used as a read-only field to verify correctness of INSERT
19     */

20    public java.lang.Long JavaDoc getMotherId( ) ;
21
22    /**
23     * Non-null CMP field mapped to the foreign key field Used as a read-only field to verify correctness of INSERT
24     */

25    public java.lang.String JavaDoc getMotherName( ) ;
26
27    public org.jboss.test.cmp2.fkmapping.ejb.ParentLocal getMother( ) ;
28
29    public void setMother( org.jboss.test.cmp2.fkmapping.ejb.ParentLocal parent ) ;
30
31 }
32
Popular Tags