user.java
来自「J2EE 技术 源码 书籍源代码(j2ee编程技术)」· Java 代码 · 共 70 行
JAVA
70 行
/* * Generated by XDoclet - Do not edit! */package com.study.exercise;/** * Remote interface for User. * @lomboz generated */public interface User 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 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 level * @return the level */ public java.lang.Integer getLevel( ) throws java.rmi.RemoteException; /** * Sets the level * @param java.lang.Integer the new level value */ public void setLevel( java.lang.Integer level ) throws java.rmi.RemoteException; /** * Returns the email_address * @return the email_address */ public java.lang.String getEmail_address( ) throws java.rmi.RemoteException; /** * Sets the email_address * @param java.lang.String the new email_address value */ public void setEmail_address( java.lang.String email_address ) throws java.rmi.RemoteException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?