no message

This commit is contained in:
2023-12-15 18:57:00 +03:00
parent 13c629f1b4
commit b4b7a8e183
4 changed files with 19 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
package TestingSystem.DVM.DVMPackage;
import Common.UI.Menus_2023.DataMenuBar;
import Visual_DVM_2021.Passes.PassCode_2021;
public class DVMPackagesBar extends DataMenuBar {
public DVMPackagesBar() {
super("пакеты задач DVM", PassCode_2021.AddDVMPackage,
PassCode_2021.AddTasksToDVMPackage,
PassCode_2021.StartDVMPackage,
PassCode_2021.AbortDVMPackage,
PassCode_2021.DeleteDVMPackage
// PassCode_2021.ExportTasksPackageToExcel,
);
}
}

View File

@@ -0,0 +1,11 @@
package TestingSystem.SAPFOR.SapforPackage;
import Common.UI.Menus_2023.DataMenuBar;
import Visual_DVM_2021.Passes.PassCode_2021;
public class SapforPackagesBar extends DataMenuBar {
public SapforPackagesBar() {
super("пакеты задач SAPFOR"
// PassCode_2021.AbortSapforTaskPackage,
// PassCode_2021.DeleteSapforTasksPackage
);
}
}