KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > interfaces > AddressLocal


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

4 package test.interfaces;
5
6 /**
7  * Local interface for Address.
8  * @xdoclet-generated at 16-04-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

13 public interface AddressLocal
14    extends javax.ejb.EJBLocalObject JavaDoc
15 {
16
17    public test.interfaces.AddressValue getAddressValue( ) ;
18
19    public void setAddressValue( test.interfaces.AddressValue v ) ;
20
21    /**
22     * Check to see if read-only is set for jboss
23     * @return */

24    public int getReadOnly( ) ;
25
26    /**
27     * The creation-date of the entity. This field is purely to track when this entity was created, and should be set in ejbCreate (<code>setCreationDate(new Date());</code>. It is not included in the value object. <p>We use the qualified name here because XDoclet doesn't copy imports from base classes into the generated interfaces.</p>
28     */

29    public java.util.Date JavaDoc getCreationDate( ) ;
30
31    public void setCreationDate( java.util.Date JavaDoc creationDate ) ;
32
33 }
34
Popular Tags