00001 package ProdDatabase; 00002 00003 public class SctDaqTestInfo { 00004 00005 String testName; 00006 String testDate; 00007 int testIndex; 00008 String serialNo; 00009 String location; 00010 00011 public SctDaqTestInfo(String serialNo, String testName, String testDate, String location, int index) { 00012 this.serialNo=serialNo; 00013 this.location=location; 00014 this.testDate = testDate; 00015 this.testName = testName; 00016 this.testIndex=index; 00017 } 00018 00019 public String getInfoString() { 00020 return testName+" test of "+serialNo+" on "+testDate+" at "+location; 00021 } 00022 public int getTestIndex() { 00023 return testIndex; 00024 } 00025 }