register.java

来自「《J2EE专业项目实例开发》源代码」· Java 代码 · 共 19 行

JAVA
19
字号
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 + -
显示快捷键?