customer.java
来自「J2EE开发与Weblogic一书中的源代码」· Java 代码 · 共 20 行
JAVA
20 行
package com.learnweblogic.examples.ch10.customer;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
public interface Customer extends EJBObject {
Integer getId() throws RemoteException;
String getFirstName() throws RemoteException;
void setFirstName(String firstName) throws RemoteException;
String getLastName() throws RemoteException;
void setLastName(String lastName) throws RemoteException;
String getEmailAddress() throws RemoteException;
void setEmailAddress(String email) throws RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?