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

百货/超市行业

开发平台:

WINDOWS

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