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

net.sf.gluebooster.java.booster.basic.container.BoostedProperties Maven / Gradle / Ivy

package net.sf.gluebooster.java.booster.basic.container;


import java.util.Properties;

import net.sf.gluebooster.java.booster.essentials.meta.objects.ObjectAttributes;

/**
 * Properties with additional methods
 * 
 * @author CBauer
 * 
 */
public class BoostedProperties extends Properties{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * Additional attributes.
	 */
	private ObjectAttributes attributes = new ObjectAttributes();

	public void setAttributes(ObjectAttributes newValue){
	attributes = newValue;
	}

	public ObjectAttributes getAttributes(){
	return attributes;
	}

	public BoostedProperties() {
	} 

	/**
	 * Constructor with initial content.
	 * 
	 * @param defaults
	 *            the initial content
	 */
	public BoostedProperties(Properties defaults) {
		super(defaults);
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy