KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

9 public interface ReadOnlyLocal
10    extends javax.ejb.EJBLocalObject JavaDoc
11 {
12    /**
13     * Get the value of id.
14     * @return value of id.
15     */

16    public java.lang.Integer JavaDoc getId( ) ;
17
18    /**
19     * Get the value of value.
20     * @return value of value.
21     */

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

28    public void setValue( java.lang.Integer JavaDoc value ) ;
29
30 }
31
Popular Tags