KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > retest > ref > ejb > interfaces > SimpleCMP


1 /*
2  * Generated file - Do not edit!
3  */

4 package xdoclet.retest.ref.ejb.interfaces;
5
6 import java.lang.*;
7 import javax.ejb.EntityBean JavaDoc;
8
9 /**
10  * Remote interface for simple/SimpleCMP.
11  * @xdoclet-generated at 05-mars-02 22:51:01
12  */

13 public interface SimpleCMP
14    extends javax.ejb.EJBObject JavaDoc
15 {
16    /**
17     * Abstract cmp2 field get-set pair for field aByte
18     * Get the value of aByte
19     * @return value of aByte
20     */

21    public byte getAByte( ) throws java.rmi.RemoteException JavaDoc;
22
23    /**
24     * Abstract cmp2 field get-set pair for field aChar
25     * Get the value of aChar
26     * @return value of aChar
27     */

28    public char getAChar( ) throws java.rmi.RemoteException JavaDoc;
29
30    /**
31     * Abstract cmp2 field get-set pair for field aDouble
32     * Get the value of aDouble
33     * @return value of aDouble
34     */

35    public double getADouble( ) throws java.rmi.RemoteException JavaDoc;
36
37    /**
38     * Abstract cmp2 field get-set pair for field aFloat
39     * Get the value of aFloat
40     * @return value of aFloat
41     */

42    public float getAFloat( ) throws java.rmi.RemoteException JavaDoc;
43
44    /**
45     * Abstract cmp2 field get-set pair for field aLong
46     * Get the value of aLong
47     * @return value of aLong
48     */

49    public long getALong( ) throws java.rmi.RemoteException JavaDoc;
50
51    /**
52     * Abstract cmp2 field get-set pair for field aShort
53     * Get the value of aShort
54     * @return value of aShort
55     */

56    public short getAShort( ) throws java.rmi.RemoteException JavaDoc;
57
58    /**
59     * Abstract cmp2 field get-set pair for field anInt
60     * Get the value of anInt
61     * @return value of anInt
62     */

63    public int getAnInt( ) throws java.rmi.RemoteException JavaDoc;
64
65    /**
66     * Abstract cmp2 field get-set pair for field anObject
67     * Get the value of anObject
68     * @return value of anObject
69     */

70    public Object JavaDoc getAnObject( ) throws java.rmi.RemoteException JavaDoc;
71
72    /**
73     * Abstract cmp2 field get-set pair for field anObjectArray
74     * Get the value of anObjectArray
75     * @return value of anObjectArray
76     */

77    public Object JavaDoc[] getAnObjectArray( ) throws java.rmi.RemoteException JavaDoc;
78
79    /**
80     * Abstract cmp2 field get-set pair for field id
81     * Get the value of id
82     * @return value of id
83     */

84    public Integer JavaDoc getId( ) throws java.rmi.RemoteException JavaDoc;
85
86    /**
87     * Abstract cmp2 field get-set pair for field aBoolean
88     * Get the value of aBoolean
89     * @return value of aBoolean
90     */

91    public boolean isABoolean( ) throws java.rmi.RemoteException JavaDoc;
92
93    /**
94     * Set the value of aBoolean
95     * @param aBoolean Value to assign to aBoolean
96     */

97    public void setABoolean( boolean aBoolean ) throws java.rmi.RemoteException JavaDoc;
98
99    /**
100     * Set the value of aByte
101     * @param aByte Value to assign to aByte
102     */

103    public void setAByte( byte aByte ) throws java.rmi.RemoteException JavaDoc;
104
105    /**
106     * Set the value of aChar
107     * @param aChar Value to assign to aChar
108     */

109    public void setAChar( char aChar ) throws java.rmi.RemoteException JavaDoc;
110
111    /**
112     * Set the value of aDouble
113     * @param aDouble Value to assign to aDouble
114     */

115    public void setADouble( double aDouble ) throws java.rmi.RemoteException JavaDoc;
116
117    /**
118     * Set the value of aFloat
119     * @param aFloat Value to assign to aFloat
120     */

121    public void setAFloat( float aFloat ) throws java.rmi.RemoteException JavaDoc;
122
123    /**
124     * Set the value of aLong
125     * @param aLong Value to assign to aLong
126     */

127    public void setALong( long aLong ) throws java.rmi.RemoteException JavaDoc;
128
129    /**
130     * Set the value of aShort
131     * @param aShort Value to assign to aShort
132     */

133    public void setAShort( short aShort ) throws java.rmi.RemoteException JavaDoc;
134
135    /**
136     * Set the value of anInt
137     * @param anInt Value to assign to anInt
138     */

139    public void setAnInt( int anInt ) throws java.rmi.RemoteException JavaDoc;
140
141    /**
142     * Set the value of anObject
143     * @param anObject Value to assign to anObject
144     */

145    public void setAnObject( Object JavaDoc anObject ) throws java.rmi.RemoteException JavaDoc;
146
147    /**
148     * Set the value of anObjectArray
149     * @param anObjectArray Value to assign to anObjectArray
150     */

151    public void setAnObjectArray( Object JavaDoc[] anObjectArray ) throws java.rmi.RemoteException JavaDoc;
152
153    /**
154     * Set the value of id
155     * @param id Value to assign to id
156     */

157    public void setId( Integer JavaDoc id ) throws java.rmi.RemoteException JavaDoc;
158
159 }
160
Popular Tags