2024-10-09 22:15:56 +03:00
|
|
|
package _VisualDVM.Visual.Windows;
|
2024-10-15 23:01:36 +03:00
|
|
|
import Common.Visual.FormWithSplitters;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-09 22:01:19 +03:00
|
|
|
import _VisualDVM.Visual.Interface.TestsWindow;
|
2023-10-10 23:33:23 +03:00
|
|
|
|
|
|
|
|
import javax.swing.*;
|
|
|
|
|
public class TestsForm implements TestsWindow, FormWithSplitters {
|
|
|
|
|
public JSplitPane SC45;
|
2024-10-14 15:19:13 +03:00
|
|
|
private JPanel content;
|
2023-10-10 23:33:23 +03:00
|
|
|
private JPanel groupsBackground;
|
|
|
|
|
private JPanel groupsPanel;
|
|
|
|
|
private JPanel testsPanel;
|
2024-10-14 15:19:13 +03:00
|
|
|
public TestsForm() {
|
|
|
|
|
LoadSplitters();
|
|
|
|
|
Global.testingServer.db.groups.mountUI(groupsPanel);
|
|
|
|
|
Global.testingServer.db.tests.mountUI(testsPanel);
|
|
|
|
|
}
|
2023-10-10 23:33:23 +03:00
|
|
|
@Override
|
|
|
|
|
public JPanel getContent() {
|
|
|
|
|
return content;
|
|
|
|
|
}
|
2023-10-10 20:14:48 +03:00
|
|
|
@Override
|
|
|
|
|
public void ShowAll() {
|
2023-10-10 23:33:23 +03:00
|
|
|
Global.testingServer.db.groups.ShowUI();
|
|
|
|
|
}
|
2023-10-10 20:14:48 +03:00
|
|
|
}
|