ItemLocal.java
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Generated by XDoclet - Do not edit!
  3.  */
  4. package cmp;
  5. /**
  6.  * Local interface for Item.
  7.  * @lomboz generated
  8.  */
  9. public interface ItemLocal
  10.    extends javax.ejb.EJBLocalObject
  11. {
  12.    /**
  13.     * Returns the ItemID
  14.     * @return the ItemID
  15.     */
  16.    public java.lang.String getItemID(  ) ;
  17.    /**
  18.     * Sets the ItemID
  19.     * @param java.lang.String the new ItemID value
  20.     */
  21.    public void setItemID( java.lang.String ItemID ) ;
  22.    /**
  23.     * Returns the SupplierID
  24.     * @return the SupplierID
  25.     */
  26.    public java.lang.String getSupplierID(  ) ;
  27.    /**
  28.     * Sets the SupplierID
  29.     * @param java.lang.String the new SupplierID value
  30.     */
  31.    public void setSupplierID( java.lang.String SupplierID ) ;
  32.    /**
  33.     * Returns the Description
  34.     * @return the Description
  35.     */
  36.    public java.lang.String getDescription(  ) ;
  37.    /**
  38.     * Sets the Description
  39.     * @param java.lang.String the new Description value
  40.     */
  41.    public void setDescription( java.lang.String Description ) ;
  42.    /**
  43.     * Returns the Quantity
  44.     * @return the Quantity
  45.     */
  46.    public java.lang.Integer getQuantity(  ) ;
  47.    /**
  48.     * Sets the Quantity
  49.     * @param java.lang.Integer the new Quantity value
  50.     */
  51.    public void setQuantity( java.lang.Integer Quantity ) ;
  52.    /**
  53.     * Returns the Price
  54.     * @return the Price
  55.     */
  56.    public java.lang.Float getPrice(  ) ;
  57.    /**
  58.     * Sets the Price
  59.     * @param java.lang.Float the new Price value
  60.     */
  61.    public void setPrice( java.lang.Float Price ) ;
  62.    public cmp.ItemData getItemData(  ) ;
  63.    public void fillStock( java.lang.Integer quantity ) ;
  64. }