00001 package ProdDatabase; 00002 00003 public class MetrologyTest { 00004 String testno, location, date, event, type; 00005 String status; 00006 public MetrologyTest(String testno, String location, String date, String event, String type, String status) { 00007 this.date=date; 00008 this.location=location; 00009 this.testno=testno; 00010 this.event=event; 00011 this.status=status; 00012 this.type=type; 00013 } 00014 00015 public String getLocation() { 00016 return location; 00017 } 00018 00019 public String getDate() { 00020 return date; 00021 } 00022 public String getTestNo() { 00023 return testno; 00024 } 00025 public String getEvent() { 00026 return event; 00027 } 00028 public String getStatus() { 00029 return status; 00030 } 00031 public String getType() { 00032 return type; 00033 } 00034 } 00035