/* * Generated by XDoclet - Do not edit! */ package cmp; /** * Local interface for Item. * @lomboz generated */ public interface ItemLocal extends javax.ejb.EJBLocalObject { /** * Returns the ItemID * @return the ItemID */ public java.lang.String getItemID( ) ; /** * Sets the ItemID * @param java.lang.String the new ItemID value */ public void setItemID( java.lang.String ItemID ) ; /** * Returns the SupplierID * @return the SupplierID */ public java.lang.String getSupplierID( ) ; /** * Sets the SupplierID * @param java.lang.String the new SupplierID value */ public void setSupplierID( java.lang.String SupplierID ) ; /** * Returns the Description * @return the Description */ public java.lang.String getDescription( ) ; /** * Sets the Description * @param java.lang.String the new Description value */ public void setDescription( java.lang.String Description ) ; /** * Returns the Quantity * @return the Quantity */ public java.lang.Integer getQuantity( ) ; /** * Sets the Quantity * @param java.lang.Integer the new Quantity value */ public void setQuantity( java.lang.Integer Quantity ) ; /** * Returns the Price * @return the Price */ public java.lang.Float getPrice( ) ; /** * Sets the Price * @param java.lang.Float the new Price value */ public void setPrice( java.lang.Float Price ) ; public cmp.ItemData getItemData( ) ; public void fillStock( java.lang.Integer quantity ) ; }