Better order of fields in sample table.
This commit is contained in:
@@ -21,9 +21,11 @@ public class SampleInfo extends HashMap {
|
||||
}
|
||||
|
||||
Object[] getData() {
|
||||
return new Object[]{getStr("puckAddress"), getInt("sampleMountCount"), getStr("userName"), getStr("puckName"),
|
||||
getEnum("sampleStatus", SampleStatus.class, SampleStatus.Unknown), getStr("sampleName"), getInt("samplePosition"),
|
||||
getStr("puckBarcode"), getStr("dewarName"), getEnum("puckType", PuckType.class, PuckType.Unknown)};
|
||||
return new Object[]{getStr("userName"), getStr("dewarName"),
|
||||
getStr("puckName"), getStr("puckAddress"), getStr("puckBarcode"), getEnum("puckType", PuckType.class, PuckType.Unknown),
|
||||
getStr("sampleName"), getInt("samplePosition"), getEnum("sampleStatus", SampleStatus.class, SampleStatus.Unknown), getInt("sampleMountCount")
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
String getStr(String key) {
|
||||
|
||||
Reference in New Issue
Block a user