purchaselocal.java

来自「一个简单的EJB实例.用DB2连接.JSP页面.很好用.供大家学习」· Java 代码 · 共 35 行

JAVA
35
字号
package salesdb;
/**
 * Local interface for Enterprise Bean: Purchase
 */
public interface PurchaseLocal extends javax.ejb.EJBLocalObject {
	/**
	 * Get accessor for persistent attribute: timestmp
	 */
	public java.lang.String getTimestmp();
	/**
	 * Set accessor for persistent attribute: timestmp
	 */
	public void setTimestmp(java.lang.String newTimestmp);
	/**
	 * This method was generated for supporting the relationship role named itemfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public salesdb.ItemLocal getItemfk();
	/**
	 * This method was generated for supporting the relationship role named itemfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public void setItemfk(salesdb.ItemLocal anItemfk);
	/**
	 * This method was generated for supporting the relationship role named locationfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public salesdb.LocationLocal getLocationfk();
	/**
	 * This method was generated for supporting the relationship role named locationfk.
	 * It will be deleted/edited when the relationship is deleted/edited.
	 */
	public void setLocationfk(salesdb.LocationLocal aLocationfk);
}

⌨️ 快捷键说明

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