item.java

来自「使用J2EE编写的网上商店系统」· Java 代码 · 共 84 行

JAVA
84
字号
/* * Generated by XDoclet - Do not edit! */package cmp;/** * Remote interface for Item. * @lomboz generated */public interface Item   extends javax.ejb.EJBObject{   /**    * Returns the ItemID    * @return the ItemID    */   public java.lang.String getItemID(  )      throws java.rmi.RemoteException;   /**    * Sets the ItemID    * @param java.lang.String the new ItemID value    */   public void setItemID( java.lang.String ItemID )      throws java.rmi.RemoteException;   /**    * Returns the SupplierID    * @return the SupplierID    */   public java.lang.String getSupplierID(  )      throws java.rmi.RemoteException;   /**    * Sets the SupplierID    * @param java.lang.String the new SupplierID value    */   public void setSupplierID( java.lang.String SupplierID )      throws java.rmi.RemoteException;   /**    * Returns the Description    * @return the Description    */   public java.lang.String getDescription(  )      throws java.rmi.RemoteException;   /**    * Sets the Description    * @param java.lang.String the new Description value    */   public void setDescription( java.lang.String Description )      throws java.rmi.RemoteException;   /**    * Returns the Quantity    * @return the Quantity    */   public java.lang.Integer getQuantity(  )      throws java.rmi.RemoteException;   /**    * Sets the Quantity    * @param java.lang.Integer the new Quantity value    */   public void setQuantity( java.lang.Integer Quantity )      throws java.rmi.RemoteException;   /**    * Returns the Price    * @return the Price    */   public java.lang.Float getPrice(  )      throws java.rmi.RemoteException;   /**    * Sets the Price    * @param java.lang.Float the new Price value    */   public void setPrice( java.lang.Float Price )      throws java.rmi.RemoteException;}

⌨️ 快捷键说明

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