2024-09-18 22:58:38 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
|
|
|
|
import Common.Current;
|
|
|
|
|
import TestingSystem.DVM.DVMConfiguration.DVMConfiguration;
|
2024-09-18 23:19:55 +03:00
|
|
|
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
|
2024-09-18 22:58:38 +03:00
|
|
|
import Visual_DVM_2021.Passes.SaveCurrentConfiguration;
|
2024-09-18 23:19:55 +03:00
|
|
|
public class SaveCurrentSAPFORConfiguration extends SaveCurrentConfiguration<SapforConfiguration> {
|
2024-09-18 22:58:38 +03:00
|
|
|
public SaveCurrentSAPFORConfiguration() {
|
2024-09-18 23:19:55 +03:00
|
|
|
super(SapforConfiguration.class);
|
2024-09-18 22:58:38 +03:00
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public Current currentName() {
|
|
|
|
|
return Current.SapforConfiguration;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|