отображение машины и ползователя на вкладке тестирования.

This commit is contained in:
2023-12-11 18:29:15 +03:00
parent cb74d629b7
commit 12e963ca1b
20 changed files with 208 additions and 25 deletions

View File

@@ -229,6 +229,10 @@ public class MainForm extends Form implements MainWindow {
globalTabs.setSelectedIndex(1);
}
@Override
public void FocusCredentials() {
globalTabs.setSelectedIndex(2);
}
@Override
public void FocusTests() {
globalTabs.setSelectedIndex(3);
}

View File

@@ -80,7 +80,7 @@
</properties>
<border type="none"/>
<children>
<grid id="b1fe2" binding="packagesPanel" layout-manager="BorderLayout" hgap="0" vgap="0">
<grid id="b1fe2" binding="dvmPackagesPanel" layout-manager="BorderLayout" hgap="0" vgap="0">
<constraints border-constraint="Center"/>
<properties/>
<border type="none"/>

View File

@@ -34,7 +34,7 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
private JButton bChangeKernels;
private JTextField filterName;
private JPanel configurationsPanel;
private JPanel packagesPanel;
private JPanel dvmPackagesPanel;
private JButton bCompilationFilter;
private JPanel dvmTestingPanel;
private JPanel sapforTestingPanel;
@@ -85,8 +85,10 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
SC66.setRightComponent(sapforVersionSlave.getContent());
//-
Global.testingServer.db.configurations.mountUI(configurationsPanel);
Global.testingServer.account_db.packages.mountUI(packagesPanel);
Global.testingServer.account_db.testRunTasks.mountUI(testsRunTasksPanel);
Global.testingServer.db.dvmPackages.mountUI(dvmPackagesPanel);
// Global.testingServer.account_db.packages.mountUI(packagesPanel);
// Global.testingServer.account_db.testRunTasks.mountUI(testsRunTasksPanel);
//--
Global.testingServer.db.sapforConfigurations.mountUI(sapforConfigurationsPanel);
Global.testingServer.db.sapforConfigurationCommands.mountUI(sapforConfigurationCommandsPanel);
@@ -99,7 +101,8 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
@Override
public void ShowAll() {
Global.testingServer.db.configurations.ShowUI();
Global.testingServer.account_db.packages.ShowUI();
// Global.testingServer.account_db.packages.ShowUI();
Global.testingServer.db.dvmPackages.ShowUI();
//--
Global.testingServer.db.serverSapfors.ShowUI();
Global.testingServer.db.sapforConfigurations.ShowUI();
@@ -163,13 +166,13 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
}
@Override
public void RemountTestTable() {
UI.Clear(packagesPanel);
UI.Clear(dvmPackagesPanel);
UI.Clear(testsRunTasksPanel);
UI.Clear(sapforTasksPackagesPanel);
UI.Clear(sapforTasksPanel);
DropSapforComparison();
//-->>
Global.testingServer.account_db.packages.mountUI(packagesPanel);
Global.testingServer.account_db.packages.mountUI(dvmPackagesPanel);
Global.testingServer.account_db.testRunTasks.mountUI(testsRunTasksPanel);
Global.testingServer.account_db.sapforTasksPackages.mountUI(sapforTasksPackagesPanel);
Global.testingServer.account_db.sapforTasks.mountUI(sapforTasksPanel);