All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.fichtelmax.mojo.messagebundle.model.MessageBundleInfo Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
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