This commit is contained in:
2023-10-26 00:07:29 +03:00
parent 9c324abb63
commit 70eeaf21ca
6 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
package Visual_DVM_2021.Passes.All;
import Common.Current;
import Common.UI.UI;
import SapforTestingSystem.SapforTasksPackage.SapforTasksPackage;
import Visual_DVM_2021.Passes.Pass_2021;
public class ShowSapforTaskPackage extends Pass_2021<SapforTasksPackage> {
@Override
public String getIconPath() {
return "/icons/VariantsCoverage.png";
}
@Override
public String getButtonText() {
return "";
}
@Override
protected boolean canStart(Object... args) throws Exception {
if (Current.Check(Log, Current.SapforTasksPackage)){
target = Current.getSapforTasksPackage();
return true;
}
return false;
}
@Override
protected void body() throws Exception {
UI.Info("+");
}
}