
com.malinskiy.sheldon.codegen.model.DefaultValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Reactive preferences abstraction
package com.malinskiy.sheldon.codegen.model;
import javax.annotation.Nonnull;
import javax.lang.model.element.VariableElement;
public class DefaultValue {
@Nonnull private VariableElement element;
@Nonnull private String prefName;
public DefaultValue(@Nonnull VariableElement element,
@Nonnull String prefName) {
this.element = element;
this.prefName = prefName;
}
@Nonnull public VariableElement getElement() {
return element;
}
@Nonnull public String getPrefName() {
return prefName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy