Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Bid
- {
- private final Person bidder;
- private final long value;
- public Bid(Person bidder, long value)
- {
- this.bidder = bidder;
- this.value = value;
- }
- public Person getBidder()
- {
- return bidder;
- }
- public long getValue()
- {
- return value;
- }
- }
Add Comment
Please, Sign In to add comment