DeliverItem.java
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

WINDOWS

  1. package mdb;
  2. /*
  3.  * Created on Jun 19, 2003
  4.  *
  5.  * To change the template for this generated file go to
  6.  * Window>Preferences>Java>Code Generation>Code and Comments
  7.  */
  8. import java.io.Serializable;
  9. /**
  10.  * @author vishal
  11.  *
  12.  * To change the template for this generated type comment go to
  13.  * Window>Preferences>Java>Code Generation>Code and Comments
  14.  */
  15. public class DeliverItem  extends Object implements Serializable{
  16. private String username;
  17. private String passwd;
  18. private String itemID;
  19. private int quantity;
  20. /**
  21.  * 
  22.  */
  23. public DeliverItem(String username, String passwd, String itemID, int quantity) {
  24. super();
  25. setUsername(username);
  26. setPasswd(passwd);
  27. setItemID(itemID);
  28. setQuantity(quantity);
  29. }
  30. /**
  31.  * @return
  32.  */
  33. public String getItemID() {
  34. return itemID;
  35. }
  36. /**
  37.  * @return
  38.  */
  39. public String getPasswd() {
  40. return passwd;
  41. }
  42. /**
  43.  * @return
  44.  */
  45. public int getQuantity() {
  46. return quantity;
  47. }
  48. /**
  49.  * @return
  50.  */
  51. public String getUsername() {
  52. return username;
  53. }
  54. /**
  55.  * @param string
  56.  */
  57. public void setItemID(String string) {
  58. itemID = string;
  59. }
  60. /**
  61.  * @param string
  62.  */
  63. public void setPasswd(String string) {
  64. passwd = string;
  65. }
  66. /**
  67.  * @param i
  68.  */
  69. public void setQuantity(int i) {
  70. quantity = i;
  71. }
  72. /**
  73.  * @param string
  74.  */
  75. public void setUsername(String string) {
  76. username = string;
  77. }
  78. }