de.fichtelmax.mojo.messagebundle.model.MessagePropertyInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messagebundle-maven-plugin Show documentation
Show all versions of messagebundle-maven-plugin Show documentation
A Maven plugin that generates enumerations for message bundles
package de.fichtelmax.mojo.messagebundle.model;
public class MessagePropertyInfo {
private String propertyName;
private String value;
public String getPropertyName() {
return propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy