KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > jmx > interfaces > EntityB


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

4 package org.jboss.test.jmx.interfaces;
5
6 /**
7  * Remote interface for EntityB.
8  */

9 public interface EntityB
10    extends javax.ejb.EJBObject JavaDoc
11 {
12    /**
13     * Abstract cmp2 field get-set pair for field id Get the value of id
14     * @return value of id
15     */

16    public java.lang.Integer JavaDoc getId( )
17       throws java.rmi.RemoteException JavaDoc;
18
19    /**
20     * Set the value of id
21     * @param id Value to assign to id
22     */

23    public void setId( java.lang.Integer JavaDoc id )
24       throws java.rmi.RemoteException JavaDoc;
25
26    /**
27     * Abstract cmp2 field get-set pair for field value Get the value of value
28     * @return value of value
29     */

30    public java.lang.String JavaDoc getValue( )
31       throws java.rmi.RemoteException JavaDoc;
32
33    /**
34     * Set the value of value
35     * @param value Value to assign to value
36     */

37    public void setValue( java.lang.String JavaDoc value )
38       throws java.rmi.RemoteException JavaDoc;
39
40 }
41
Popular Tags