no message

This commit is contained in:
2023-11-17 21:26:01 +03:00
parent 32166efa68
commit 82a5e9c147
19 changed files with 155 additions and 338 deletions

View File

@@ -1,20 +1,10 @@
package Visual_DVM_2021.Passes.All;
import Common.Current;
import Common.Global;
import TestingSystem.Common.TestingServer;
import TestingSystem.SAPFOR.SapforConfigurationCommand.SapforConfigurationCommand;
import Visual_DVM_2021.Passes.DeleteSelectedServerObjects;
import java.util.Vector;
public class DeleteSapforConfigurationCommand extends DeleteSelectedServerObjects {
import Visual_DVM_2021.Passes.Server.DeleteServerObject;
public class DeleteSapforConfigurationCommand extends DeleteServerObject<TestingServer, SapforConfigurationCommand> {
public DeleteSapforConfigurationCommand() {
super(SapforConfigurationCommand.class);
}
@Override
protected boolean canStart(Object... args) throws Exception {
if (Current.Check(Log, Current.SapforConfigurationCommand)){
target= new Vector<>();
target.add(Current.getSapforConfigurationCommand());
return true;
}
return false;
super(Global.testingServer, SapforConfigurationCommand.class);
}
}