sk.seges.sesam.pap.configuration.model.setting.SettingsContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sesam-configuration-support Show documentation
Show all versions of sesam-configuration-support Show documentation
SeSAM configuration annotations support
The newest version!
package sk.seges.sesam.pap.configuration.model.setting;
import sk.seges.sesam.core.configuration.annotation.Parameter;
import sk.seges.sesam.pap.configuration.model.parameter.ParameterContext;
public class SettingsContext extends ParameterContext {
private Parameter parameter;
public void setParameter(Parameter parameter) {
this.parameter = parameter;
}
public String getParameterName() {
if (parameter == null) {
return null;
}
return parameter.name();
}
public String getParameterDescription() {
if (parameter == null) {
return null;
}
return parameter.description();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy