?? register.java
字號:
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
public interface Register extends EJBObject
{
public String getUserName() throws RemoteException;
public String getFirstName() throws RemoteException;
public String getMiddleName() throws RemoteException;
public String getLastName() throws RemoteException;
public String getDateOfBirth() throws RemoteException;
public String getEmail() throws RemoteException;
public String getAddressLine1() throws RemoteException;
public String getAddressLine2() throws RemoteException;
public String getCity() throws RemoteException;
public String getState() throws RemoteException;
public String getCreditCard() throws RemoteException;
public String getCreditCardType() throws RemoteException;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -