de.fichtelmax.mojo.messagebundle.model.MessageBundleInfo 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;
import java.util.ArrayList;
import java.util.Collection;
public class MessageBundleInfo {
private String packageName;
private String name;
private String bundleFileName;
private Collection propertyInfos = new ArrayList<>();
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Collection getPropertyInfos() {
return propertyInfos;
}
public void setPropertyInfos(Collection propertyInfos) {
this.propertyInfos = propertyInfos;
}
public String getPackageName() {
return packageName;
}
public void setPackageName(String packageName) {
this.packageName = packageName;
}
public String getBundleFileName() {
return bundleFileName;
}
public void setBundleFileName(String bundleFileName) {
this.bundleFileName = bundleFileName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy