accountlocal.java
来自「< J2EE应用开发详解>>一书全部的源代码. 本书基于J」· Java 代码 · 共 86 行
JAVA
86 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?