KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > ejbconf > beans > interfaces > ReadOnly


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

4 package org.jboss.test.ejbconf.beans.interfaces;
5
6 /**
7  * Remote interface for ReadOnly.
8  */

9 public interface ReadOnly
10    extends javax.ejb.EJBObject JavaDoc
11 {
12    /**
13     * 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     * Get the value of value.
21     * @return value of value.
22     */

23    public java.lang.Integer JavaDoc getValue( )
24       throws java.rmi.RemoteException JavaDoc;
25
26    /**
27     * Set the value of value.
28     * @param v Value to assign to value.
29     */

30    public void setValue( java.lang.Integer JavaDoc value )
31       throws java.rmi.RemoteException JavaDoc;
32
33 }
34
Popular Tags