📄 account.java
字号:
/* * Generated by XDoclet - Do not edit! */package com.j2ee14.ch17;/** * Remote interface for Account. * @lomboz generated */public interface Account extends javax.ejb.EJBObject{ /** * Returns the userId * @return the userId */ public java.lang.String getUserId( ) throws java.rmi.RemoteException; /** * Sets the userId * @param java.lang.String the new userId value */ public void setUserId( java.lang.String userId ) throws java.rmi.RemoteException; /** * Returns the trueName * @return the trueName */ public java.lang.String getTrueName( ) throws java.rmi.RemoteException; /** * Sets the trueName * @param java.lang.String the new trueName value */ public void setTrueName( java.lang.String trueName ) throws java.rmi.RemoteException; /** * Returns the sex * @return the sex */ public java.lang.String getSex( ) throws java.rmi.RemoteException; /** * Sets the sex * @param java.lang.String the new sex value */ public void setSex( java.lang.String sex ) throws java.rmi.RemoteException; /** * Returns the address * @return the address */ public com.j2ee14.ch17.Address getAddress( ) throws java.rmi.RemoteException; /** * Sets the address * @param java.lang.String the new address value */ public void setAddress( com.j2ee14.ch17.Address address ) throws java.rmi.RemoteException; /** * Returns the password * @return the password */ public java.lang.String getPassword( ) throws java.rmi.RemoteException; /** * Sets the password * @param java.lang.String the new password value */ public void setPassword( java.lang.String password ) throws java.rmi.RemoteException; /** * Returns the age * @return the age */ public int getAge( ) throws java.rmi.RemoteException; /** * Sets the age * @param int the new age value */ public void setAge( int age ) throws java.rmi.RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -