2024-10-14 12:14:01 +03:00
|
|
|
package _VisualDVM.Passes.All;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-14 15:19:13 +03:00
|
|
|
import _VisualDVM.Passes.Testing.ShowCurrentConfigurationTests;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.TestingSystem.DVM.DVMConfiguration.DVMConfiguration;
|
2024-10-01 17:33:08 +03:00
|
|
|
public class ShowCurrentDVMConfigurationTests extends ShowCurrentConfigurationTests<DVMConfiguration> {
|
2024-09-15 01:36:19 +03:00
|
|
|
@Override
|
2024-10-24 23:40:24 +03:00
|
|
|
public Class currentClass() {
|
|
|
|
|
return DVMConfiguration.class;
|
2024-09-15 01:36:19 +03:00
|
|
|
}
|
2024-10-01 17:33:08 +03:00
|
|
|
@Override
|
2025-03-15 13:42:16 +03:00
|
|
|
protected void showPreparation() throws Exception {
|
|
|
|
|
super.showPreparation();
|
|
|
|
|
Global.testingServer.db.dvmSettings.getUI().SelectAll(false);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
2024-10-01 17:33:08 +03:00
|
|
|
protected void showDone() throws Exception {
|
2025-03-23 02:14:23 +03:00
|
|
|
Global.testingServer.db.groups.getUI().SelectKeys(Global.testingServer.db.getDVMConfigurationGroupsIds(target));
|
|
|
|
|
Global.testingServer.db.tests.getUI().SelectKeys(Global.testingServer.db.getDVMConfigurationTestsIds(target));
|
|
|
|
|
Global.testingServer.db.dvmSettings.getUI().SelectKeys(Global.testingServer.db.getDVMConfigurationSettingsIds(target));
|
2024-10-01 17:33:08 +03:00
|
|
|
}
|
2024-09-15 01:36:19 +03:00
|
|
|
}
|