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

21 lines
649 B
Java

package Visual_DVM_2021.Passes.All;
import _VisualDVM.Global;
import Common_old.UI.UI;
import TestingSystem.SAPFOR.SapforPackage.SapforPackage;
import Visual_DVM_2021.Passes.DeleteTestingPackages;
import java.io.File;
public class DeleteSapforPackage extends DeleteTestingPackages<SapforPackage> {
public DeleteSapforPackage() {
super(SapforPackage.class);
}
protected void showPreparation() throws Exception {
super.showPreparation();
UI.getMainWindow().getTestingWindow().DropSapforComparison();
}
@Override
protected File getPackagesHome() {
return Global.SapforPackagesDirectory;
}
}