package ext.plantuml.com.ctreber.aclib.gui; /** *

* *

© 2002 Christian Treber, ct@ctreber.com

* @author Christian Treber, ct@ctreber.com * */ public class MOBoolean extends MonitoredObject { // :: remove folder when WASM private boolean fBoolean; public MOBoolean() { } public MOBoolean(boolean pBoolean) { fBoolean = pBoolean; } public void set(boolean pValue) { fBoolean = pValue; fireValueChanged(); } public boolean get() { return fBoolean; } public boolean checkRange() { return true; } }