2023-12-16 03:57:01 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-09 22:01:19 +03:00
|
|
|
import _VisualDVM.Visual.UI;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.TestingSystem.SAPFOR.SapforPackage.SapforPackage;
|
2023-12-16 03:57:01 +03:00
|
|
|
import Visual_DVM_2021.Passes.DeleteTestingPackages;
|
2023-12-18 15:44:48 +03:00
|
|
|
|
|
|
|
|
import java.io.File;
|
2023-12-16 03:57:01 +03:00
|
|
|
public class DeleteSapforPackage extends DeleteTestingPackages<SapforPackage> {
|
|
|
|
|
public DeleteSapforPackage() {
|
|
|
|
|
super(SapforPackage.class);
|
|
|
|
|
}
|
2023-12-23 21:31:56 +03:00
|
|
|
protected void showPreparation() throws Exception {
|
|
|
|
|
super.showPreparation();
|
|
|
|
|
UI.getMainWindow().getTestingWindow().DropSapforComparison();
|
|
|
|
|
}
|
2023-12-18 15:44:48 +03:00
|
|
|
@Override
|
|
|
|
|
protected File getPackagesHome() {
|
|
|
|
|
return Global.SapforPackagesDirectory;
|
|
|
|
|
}
|
2023-12-16 03:57:01 +03:00
|
|
|
}
|