DeliverItem.java
资源名称:MyStore.rar [点击查看]
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:1k
源码类别:
百货/超市行业
开发平台:
WINDOWS
- package mdb;
- /*
- * Created on Jun 19, 2003
- *
- * To change the template for this generated file go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
- import java.io.Serializable;
- /**
- * @author vishal
- *
- * To change the template for this generated type comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
- public class DeliverItem extends Object implements Serializable{
- private String username;
- private String passwd;
- private String itemID;
- private int quantity;
- /**
- *
- */
- public DeliverItem(String username, String passwd, String itemID, int quantity) {
- super();
- setUsername(username);
- setPasswd(passwd);
- setItemID(itemID);
- setQuantity(quantity);
- }
- /**
- * @return
- */
- public String getItemID() {
- return itemID;
- }
- /**
- * @return
- */
- public String getPasswd() {
- return passwd;
- }
- /**
- * @return
- */
- public int getQuantity() {
- return quantity;
- }
- /**
- * @return
- */
- public String getUsername() {
- return username;
- }
- /**
- * @param string
- */
- public void setItemID(String string) {
- itemID = string;
- }
- /**
- * @param string
- */
- public void setPasswd(String string) {
- passwd = string;
- }
- /**
- * @param i
- */
- public void setQuantity(int i) {
- quantity = i;
- }
- /**
- * @param string
- */
- public void setUsername(String string) {
- username = string;
- }
- }