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

net.sf.gluebooster.java.booster.basic.meta.Changeable Maven / Gradle / Ivy

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

/**
 * Marker interface that an instance may be changeable.
 * 
 * @author CBauer
 * 
 */
public interface Changeable {
	

	/**
	 * If this object is not changeable, setting to true may fail.
	 * 
	 * @param value
	 *            the new value
	 */
	void setChangeable(boolean value);
	
	/**
	 * Is this object changeable
	 * 
	 * @return true if changeable
	 */
	boolean isChangeable();
	
 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy