/**
* Class untuk tawaran barang
*
* @author Mohammad Tauchid
* @version 0.1
*/
public class Bid {
private long value;
private Person bidder;
// This is constructor.
public Bid (Person thisBidder, long val) {
bidder = thisBidder;
value = val;
}
// Return the value on this bid.
public long getValue () {
return value;
}
// To get information of bidder, use this method
public Person infoBidder () {
return bidder;
}
}