📄 user.java
字号:
/* * User.java * * Created on 2003年5月13日, 上午10:01 *//** * * @author administrator */import javax.ejb.EJBObject;import java.rmi.RemoteException;import java.util.*;public interface User extends EJBObject {//business method //get user's name public String getUserName() throws RemoteException; //get user's password public String getUserPassword() throws RemoteException; //get user's sex public String getUserSex() throws RemoteException; //get user's age public String getUserAge() throws RemoteException; //get user's job public String getUserJob() throws RemoteException; //get user's education public String getUserEdu() throws RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -