personlocal.java

来自「XDoclet 使自动生成部署描述符更为便利。XDoclet 是一个代码生成实用」· Java 代码 · 共 55 行

JAVA
55
字号
/* * Generated by XDoclet - Do not edit! */package test.interfaces;/** * Local interface for Person. * @xdoclet-generated at 22-10-04 * @copyright The XDoclet Team * @author XDoclet * @version 1.2.2 */public interface PersonLocal   extends javax.ejb.EJBLocalObject{   public void setId( java.lang.String id ) ;   /**    * Name of the person.    */   public java.lang.String getName(  ) ;   /**    * FirstName of the person.    */   public java.lang.String getFirstName(  ) ;   public void setFirstName( java.lang.String firstName ) ;   /**    * phone of the person.    */   public java.lang.String getPhone(  ) ;   public void setPhone( java.lang.String phone ) ;   /**    * fax of the person.    */   public java.lang.String getFax(  ) ;   public void setFax( java.lang.String fax ) ;   public void talkTo(  ) ;   /**    * 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>    */   public java.util.Date getCreationDate(  ) ;   public void setCreationDate( java.util.Date creationDate ) ;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?