⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accountlocal.java

📁 < J2EE应用开发详解>>一书全部的源代码. 本书基于J2EE 1.4平台
💻 JAVA
字号:
/* * Generated by XDoclet - Do not edit! */package com.j2ee14.ch17;/** * Local interface for Account. * @lomboz generated */public interface AccountLocal   extends javax.ejb.EJBLocalObject{   /**    * Returns the userId    * @return the userId    */   public java.lang.String getUserId(  ) ;   /**    * Sets the userId    * @param java.lang.String the new userId value    */   public void setUserId( java.lang.String userId ) ;   /**    * Returns the trueName    * @return the trueName    */   public java.lang.String getTrueName(  ) ;   /**    * Sets the trueName    * @param java.lang.String the new trueName value    */   public void setTrueName( java.lang.String trueName ) ;   /**    * Returns the sex    * @return the sex    */   public java.lang.String getSex(  ) ;   /**    * Sets the sex    * @param java.lang.String the new sex value    */   public void setSex( java.lang.String sex ) ;   /**    * Returns the address    * @return the address    */   public com.j2ee14.ch17.Address getAddress(  ) ;   /**    * Sets the address    * @param java.lang.String the new address value    */   public void setAddress( com.j2ee14.ch17.Address address ) ;   /**    * Returns the password    * @return the password    */   public java.lang.String getPassword(  ) ;   /**    * Sets the password    * @param java.lang.String the new password value    */   public void setPassword( java.lang.String password ) ;   /**    * Returns the age    * @return the age    */   public int getAge(  ) ;   /**    * Sets the age    * @param int the new age value    */   public void setAge( int age ) ;}

⌨️ 快捷键说明

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