01: /*
02: * Copyright 2004-2006 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.compass.gps.device.hibernate.eg;
18:
19: import java.util.Date;
20:
21: /**
22: * @author Gavin King
23: */
24: public class Bid extends Persistent {
25: private AuctionItem item;
26:
27: private float amount;
28:
29: private Date datetime;
30:
31: private User bidder;
32:
33: public AuctionItem getItem() {
34: return item;
35: }
36:
37: public void setItem(AuctionItem item) {
38: this .item = item;
39: }
40:
41: public float getAmount() {
42: return amount;
43: }
44:
45: public Date getDatetime() {
46: return datetime;
47: }
48:
49: public void setAmount(float f) {
50: amount = f;
51: }
52:
53: public void setDatetime(Date date) {
54: datetime = date;
55: }
56:
57: public User getBidder() {
58: return bidder;
59: }
60:
61: public void setBidder(User user) {
62: bidder = user;
63: }
64:
65: public String toString() {
66: return bidder.getUserName() + " $" + amount;
67: }
68:
69: public boolean isBuyNow() {
70: return false;
71: }
72:
73: }
|