отображение задач из json
This commit is contained in:
@@ -30,7 +30,7 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
|
||||
//-
|
||||
//---
|
||||
private JTabbedPane testingTabs;
|
||||
private JPanel testsRunTasksPanel;
|
||||
private JPanel dvmRunTasksPanel;
|
||||
private JToolBar testsResultsTools;
|
||||
private JButton bChangeKernels;
|
||||
private JTextField filterName;
|
||||
@@ -87,6 +87,7 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
|
||||
//-
|
||||
Global.testingServer.db.configurations.mountUI(configurationsPanel);
|
||||
Global.testingServer.db.dvmPackages.mountUI(dvmPackagesPanel);
|
||||
Global.testingServer.db.dvmRunTasks.mountUI(dvmRunTasksPanel);
|
||||
|
||||
Global.testingServer.db.sapforConfigurations.mountUI(sapforConfigurationsPanel);
|
||||
Global.testingServer.db.sapforConfigurationCommands.mountUI(sapforConfigurationCommandsPanel);
|
||||
@@ -102,6 +103,7 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
|
||||
//--
|
||||
Global.testingServer.db.serverSapfors.ShowUI();
|
||||
Global.testingServer.db.sapforConfigurations.ShowUI();
|
||||
Global.testingServer.db.dvmRunTasks.ShowUI();
|
||||
//---
|
||||
if (Global.properties.AutoCheckTesting)
|
||||
TestingServer.TimerOn();
|
||||
@@ -162,13 +164,13 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
|
||||
@Override
|
||||
public void RemountTestTable() {
|
||||
UI.Clear(dvmPackagesPanel);
|
||||
UI.Clear(testsRunTasksPanel);
|
||||
UI.Clear(dvmRunTasksPanel);
|
||||
UI.Clear(sapforPackagesPanel);
|
||||
UI.Clear(sapforTasksPanel);
|
||||
DropSapforComparison();
|
||||
//-->>
|
||||
Global.testingServer.account_db.packages.mountUI(dvmPackagesPanel);
|
||||
Global.testingServer.account_db.testRunTasks.mountUI(testsRunTasksPanel);
|
||||
Global.testingServer.account_db.testRunTasks.mountUI(dvmRunTasksPanel);
|
||||
Global.testingServer.account_db.sapforTasksPackages.mountUI(sapforPackagesPanel);
|
||||
Global.testingServer.account_db.sapforTasks.mountUI(sapforTasksPanel);
|
||||
}
|
||||
@@ -190,4 +192,10 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
|
||||
public void ShowNoServerSapfor() {
|
||||
testingTabs.setTitleAt(1, "SAPFOR: ?");
|
||||
}
|
||||
@Override
|
||||
public void ShowCurrentDVMPackage() {
|
||||
}
|
||||
@Override
|
||||
public void ShowNoCurrentDVMPackage() {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user