📄 subcategorybean.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : SubCategoryBean.java
* Creation/Modification History :
*
* Neelesh 11-Jan-2003 Created
*
*/
package oracle.otnsamples.vsm.entities;
// EJB imports
import javax.ejb.EntityBean;
import javax.ejb.EntityContext;
import oracle.otnsamples.vsm.entities.SubCategoryPK;
/**
* The CMP implementation bean for SubCategory entity. ejbCreate() and
* getter/setter methods for persistent fields and relational fields for the
* bean. Generated by Oracle9i JDeveloper Tool.
*/
public abstract class SubCategoryBean implements EntityBean {
private EntityContext context;
public SubCategoryPK ejbCreate( String id, String catID, String langID,
String shopID, String name )
throws javax.ejb.CreateException {
setCatID( catID );
setSubCatID( id );
setLangID( langID );
setShopID( shopID );
setSubCatName( name );
return new SubCategoryPK( id, langID );
}
public void ejbPostCreate( String id, String catID, String langID,
String shopID, String name ) {
}
public SubCategoryPK ejbCreate( ) throws javax.ejb.CreateException {
return null;
}
public void ejbPostCreate( ) {
}
public void ejbActivate( ) {
}
public void ejbLoad( ) {
}
public void ejbPassivate( ) {
}
public void ejbRemove( ) {
}
public void ejbStore( ) {
}
public void setEntityContext( EntityContext ctx ) {
this.context = ctx;
}
public void unsetEntityContext( ) {
this.context = null;
}
public abstract String getSubCatID( );
public abstract void setSubCatID( String newSubCatID );
public abstract String getShopID( );
public abstract void setShopID( String newShopID );
public abstract String getCatID( );
public abstract void setCatID( String newCatID );
public abstract String getSubCatName( );
public abstract void setSubCatName( String newSubCatName );
public abstract String getLangID( );
public abstract void setLangID( String newLangID );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -