2023-09-17 22:13:42 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
|
|
|
|
import Common.Current;
|
2023-11-17 00:04:21 +03:00
|
|
|
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Visual_DVM_2021.Passes.DeleteSelectedServerObjects;
|
|
|
|
|
|
|
|
|
|
import java.util.Vector;
|
|
|
|
|
public class DeleteSapforConfiguration extends DeleteSelectedServerObjects {
|
|
|
|
|
public DeleteSapforConfiguration() {
|
|
|
|
|
super(SapforConfiguration.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected boolean canStart(Object... args) throws Exception {
|
|
|
|
|
if (Current.Check(Log, Current.SapforConfiguration)){
|
|
|
|
|
target= new Vector<>();
|
|
|
|
|
target.add(Current.getSapforConfiguration());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|