Item.java
资源名称:MyStore.rar [点击查看]
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:2k
源码类别:
百货/超市行业
开发平台:
WINDOWS
- /*
- * 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;
- }