KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > cmp2 > cmrstress > interfaces > Parent


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

4 package org.jboss.test.cmp2.cmrstress.interfaces;
5
6 /**
7  * Remote interface for Parent.
8  */

9 public interface Parent
10    extends javax.ejb.EJBObject JavaDoc
11 {
12    /**
13     * CMP get method for Id attribute.
14     */

15    public java.lang.String JavaDoc getId( )
16       throws java.rmi.RemoteException JavaDoc;
17
18    /**
19     * CMP set method for Id attribute.
20     */

21    public void setId( java.lang.String JavaDoc id )
22       throws java.rmi.RemoteException JavaDoc;
23
24    /**
25     * Get Children that apply to this Parent.
26     */

27    public java.util.Set JavaDoc getChildren( )
28       throws java.rmi.RemoteException JavaDoc;
29
30    /**
31     * Set Children.
32     */

33    public void setChildren( java.util.Set JavaDoc children )
34       throws java.rmi.RemoteException JavaDoc;
35
36    /**
37     * Get a map of Child values. This is the current axis of evil.
38     */

39    public java.util.Map JavaDoc getPropertyMap( )
40       throws java.rmi.RemoteException JavaDoc;
41
42    /**
43     * Adds a child bean with the given attributes to this bean.
44     */

45    public void addChild( int k,java.lang.String JavaDoc field1,java.lang.String JavaDoc field2 )
46       throws javax.ejb.CreateException JavaDoc, java.rmi.RemoteException JavaDoc;
47
48 }
49
Popular Tags