⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 register.java

📁 《J2EE专业项目实例开发》源代码
💻 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 + -