Files
VisualSapfor/src/Visual_DVM_2021/Passes/All/DeleteDVMPackage.java

21 lines
644 B
Java
Raw Normal View History

package Visual_DVM_2021.Passes.All;
import Common.Constants;
import Common.Global;
import Common.UI.UI;
import TestingSystem.Common.TestingServer;
import TestingSystem.DVM.DVMPackage.DVMPackage;
import Visual_DVM_2021.Passes.DeleteServerObjects;
2023-12-15 20:39:49 +03:00
import Visual_DVM_2021.Passes.DeleteTestingPackages;
import java.util.Vector;
2023-12-15 20:39:49 +03:00
public class DeleteDVMPackage extends DeleteTestingPackages<DVMPackage> {
public DeleteDVMPackage() {
2023-12-15 20:39:49 +03:00
super(DVMPackage.class);
}
protected void showPreparation() throws Exception {
super.showPreparation();
UI.getMainWindow().getTestingWindow().DropTestRunTasksComparison();
}
}