customers.java

来自「此程序都是企业级 的数据库开发程序 全面揭示了JAVA对数据库的操作」· Java 代码 · 共 31 行

JAVA
31
字号
package mvc.entitybeans.customers;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;

public interface Customers extends EJBObject {

  /* Accessors */
  public Integer getCustomerId() throws RemoteException;
  public String getCustomerFirstName() throws RemoteException;
  public String getCustomerLastName() throws RemoteException;
  public String getCustomerAddress1() throws RemoteException;
  public String getCustomerAddress2() throws RemoteException;
  public String getCustomerCity() throws RemoteException;
  public String getCustomerPostalCode() throws RemoteException;

  /* Mutators */
  public void setCustomerId(Integer inCustomerId) throws RemoteException;
  public void setCustomerFirstName(String inCustomerFirstName) 
          throws RemoteException;
  public void setCustomerLastName(String inCustomerLastName) 
          throws RemoteException;
  public void setCustomerAddress1(String inCustomerAddress1) 
          throws RemoteException;
  public void setCustomerAddress2(String inCustomerAddress2) 
          throws RemoteException;
  public void setCustomerCity(String inCustomerCity) throws RemoteException;
  public void setCustomerPostalCode(String inCustomerPostalCode) 
          throws RemoteException;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?