1 /* 2 * Created on Jan 15, 2005 3 * 4 * TODO To change the template for this generated file go to 5 * Window - Preferences - Java - Code Style - Code Templates 6 */ 7 package net.sf.bddbddb.order; 8 9 10 11 public class TrialGuess { 12 public Order order; 13 14 public TrialPrediction prediction; 15 16 public TrialGuess(Order o, TrialPrediction p) { 17 order = o; 18 prediction = p; 19 } 20 21 public Order getOrder() { 22 return order; 23 } 24 25 public TrialPrediction getPrediction() { 26 return prediction; 27 } 28 29 public String toString() { 30 return "Order: " + order.toString() + " prediction: " + prediction.toString(); 31 } 32 }