This commit is contained in:
gac-S_Changer
2018-09-04 13:31:11 +02:00
parent 45498381d3
commit 61ca6a6bc4
4 changed files with 87 additions and 8 deletions

View File

@@ -271,6 +271,15 @@ public class Controller {
}
}
public Boolean isBarcodeReaderScanPucks() {
try {
return getMainFrame().eval("is_barcode_reader_scan_pucks()", true).equals(true);
} catch (Exception ex) {
return false;
}
}
public Boolean isPuckLoading() {
try {
return getMainFrame().eval("is_puck_loading()", true).equals(true);