📄 customerlocal.java
字号:
package itso.ejb.model.entity;
/**
* Local interface for Enterprise Bean: Customer
*/
public interface CustomerLocal extends javax.ejb.EJBLocalObject {
/**
* Get accessor for persistent attribute: title
*/
public java.lang.String getTitle();
/**
* Set accessor for persistent attribute: title
*/
public void setTitle(java.lang.String newTitle);
/**
* Get accessor for persistent attribute: firstName
*/
public java.lang.String getFirstName();
/**
* Set accessor for persistent attribute: firstName
*/
public void setFirstName(java.lang.String newFirstName);
/**
* Get accessor for persistent attribute: lastName
*/
public java.lang.String getLastName();
/**
* Set accessor for persistent attribute: lastName
*/
public void setLastName(java.lang.String newLastName);
/**
* Get accessor for persistent attribute: id
*/
public int getId();
/**
* This method was generated for supporting the relationship role named accounts.
* It will be deleted/edited when the relationship is deleted/edited.
*/
public java.util.Collection getAccounts();
/**
* This method was generated for supporting the relationship role named accounts.
* It will be deleted/edited when the relationship is deleted/edited.
*/
public void setAccounts(java.util.Collection anAccounts);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -