⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bid.java

📁 网上拍卖系统
💻 JAVA
字号:
package auction.model;import java.io.Serializable;import java.util.Date;/** * An immutable class representing one bid. * <p> * If the "successful" property is used in a legacy situation * (see book chapter 8), it is no longer an immutable class with * consequences for second-level caching. * * @see Item * @see User * @author Christian Bauer */public class Bid implements Serializable, Comparable {    private Long id = null;    private MonetaryAmount amount;	private Item item;	private User bidder;	private Date created = new Date();    private boolean successful = false;    /**	 * No-arg constructor for JavaBean tools	 */	public Bid() {}	/**	 * Full constructor	 *	 * @param amount	 * @param item	 * @param bidder	 */	public Bid(MonetaryAmount amount, Item item, User bidder) {		this.amount = amount;		this.item = item;		this.bidder = bidder;	}	// ********************** Accessor Methods ********************** //	public Long getId() { return id; }	public MonetaryAmount getAmount() { return amount; }	public Item getItem() { return item; }	public User getBidder() { return bidder; }	public Date getCreated() { return created; }    public boolean isSuccessful() { return successful; }    public void setSuccessful(boolean successful) { this.successful = successful; }    // ********************** Common Methods ********************** //	public boolean equals(Object o) {		if (this == o) return true;		if (!(o instanceof Bid)) return false;		final Bid bid = (Bid) o;        if (! getItem().getId().equals(bid.getItem().getId())) return false;        if (! (created.getTime() == bid.created.getTime()) ) return false;        if (!amount.equals(bid.amount)) return false;		return true;	}	public int hashCode() {		int result;		result = amount.hashCode();		result = 29 * result + created.hashCode();		return result;	}	public String toString() {		return  "Bid ('" + getId() + "'), " +				"Created: '" + getCreated() + "' " +				"Amount: '" + getAmount() + "'";	}	public int compareTo(Object o) {		if (o instanceof Bid) {            // Don't compare Date objects! Use the time in milliseconds!            return Long.valueOf(this.getCreated().getTime()).compareTo(                    Long.valueOf( ((Bid)o).getCreated().getTime())                   );		}		return 0;	}	// ********************** Business Methods ********************** //}

⌨️ 快捷键说明

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