使用J2EE编写的网上商店系统

源代码在线查看: itemlocal.java

软件大小: 167 K
上传用户: lingyun579
关键词: J2EE 编写
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * 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 ) ;								}							

相关资源