document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Bid  
  2. {  
  3.   private final Person bidder;  
  4.   private final long value;  
  5.  
  6.   public Bid(Person bidder, long value)  
  7.   {  
  8.     this.bidder = bidder;  
  9.     this.value = value;
  10.   }  
  11.    
  12.   public Person getBidder()  
  13.   {  
  14.     return bidder;  
  15.   }  
  16.    
  17.   public long getValue()  
  18.   {  
  19.     return value;  
  20.   }  
  21. }
');