register.java
来自「j2ee专业项目实例开发.附有三个项目源码」· Java 代码 · 共 21 行
JAVA
21 行
package music;
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 + =
减小字号Ctrl + -
显示快捷键?