2024-09-18 22:58:38 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2024-10-09 22:01:19 +03:00
|
|
|
import _VisualDVM.Current;
|
2024-09-18 23:19:55 +03:00
|
|
|
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
|
2024-09-28 21:47:17 +03:00
|
|
|
import TestingSystem.SAPFOR.SapforSettings.SapforSettings;
|
2024-09-18 22:58:38 +03:00
|
|
|
import Visual_DVM_2021.Passes.SaveCurrentConfiguration;
|
2024-09-28 21:47:17 +03:00
|
|
|
public class SaveCurrentSAPFORConfiguration extends SaveCurrentConfiguration<SapforConfiguration, SapforSettings> {
|
2024-09-18 22:58:38 +03:00
|
|
|
public SaveCurrentSAPFORConfiguration() {
|
2024-09-28 21:47:17 +03:00
|
|
|
super(SapforConfiguration.class, SapforSettings.class);
|
2024-09-18 22:58:38 +03:00
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public Current currentName() {
|
|
|
|
|
return Current.SapforConfiguration;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|