shoplocal.java

来自「噶额外噶外骨骼感广泛高热感 就 啊啊」· Java 代码 · 共 58 行

JAVA
58
字号
  /*
   * @author                        : Neelesh
   * @Version                       : 1.0
   *
   * Development Environment        : Oracle9i JDeveloper
   * Name of the File               : ShopLocal.java
   * Creation/Modification History  :
   *
   * Neelesh   11-Jan-2003      Created
   *
   */
  package oracle.otnsamples.vsm.entities;

  import java.util.Collection;
  import java.util.Date;

  // EJB imports
  import javax.ejb.EJBLocalObject;

 /**
   * Local interface for Shop entity. The interface has getters/setters for the
   * persistent fields of the entity. Generated by Oracle9i JDeveloper Tool.
   */
  public interface ShopLocal extends EJBLocalObject {

    String getId(  );

    void setId( String newId );

    String getCatID(  );

    void setCatID( String newCatID );

    String getStatus(  );

    void setStatus( String newStatus );

    Date getRegDate(  );

    void setRegDate( Date newRegDate );

    String getOwnerName(  );

    void setOwnerName( String newOwnerName );

    Collection getShopDetails(  );

    void setShopDetails( Collection newShopDetails );

    Collection getSubCategories(  );

    void setSubCategories( Collection newSubCategories );

    CustomerLocal getOwner(  );

    void setOwner( CustomerLocal newOwner );
  }

⌨️ 快捷键说明

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