Back to project page min3d.
The source code is released under:
MIT License
If you think the Android project min3d listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.min3d.lib.vos; /*w ww. jav a2 s .c o m*/ import com.min3d.lib.interfaces.IDirtyParent; public class BooleanManaged extends AbstractDirtyManaged { private boolean _b; public BooleanManaged(boolean $value, IDirtyParent $parent) { super($parent); set($value); } public boolean get() { return _b; } public void set(boolean $b) { _b = $b; setDirtyFlag(); } }