deliveritem.java

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

JAVA
92
字号
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;	}}

⌨️ 快捷键说明

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