15 lines
465 B
Java
15 lines
465 B
Java
|
|
package Visual_DVM_2021.Passes.All;
|
||
|
|
import Common.Current;
|
||
|
|
import TestingSystem.DVM.DVMConfiguration.DVMConfiguration;
|
||
|
|
import Visual_DVM_2021.Passes.SaveCurrentConfiguration;
|
||
|
|
public class SaveCurrentSAPFORConfiguration extends SaveCurrentConfiguration<DVMConfiguration> {
|
||
|
|
public SaveCurrentSAPFORConfiguration() {
|
||
|
|
super(DVMConfiguration.class);
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
public Current currentName() {
|
||
|
|
return Current.SapforConfiguration;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|