@Override public void dispose() { scriptTable.dispose(); testManagerEditor.storeValue(testManagerEditor.scriptsQualName, scriptTable.getStorageString()); OseeLog.log(TestManagerPlugin.class, Level.INFO, "ScriptPage Dispose Called"); super.dispose(); }
public String getScripts() { if (scriptTable == null) { return ""; } else if (scriptTable.getTaskList() == null) { return ""; } return scriptTable.getTaskList().toString(); }
public void addFile(String fullPath) { scriptTable.addFile(fullPath); }
public void addFiles(String[] files) { scriptTable.addFiles(files); }
private void handleDeleteButton() { scriptTable.removeSelectedTasks(); }
public void loadStorageString() { scriptTable.loadStorageString(testManagerEditor.loadValue(testManagerEditor.scriptsQualName)); }