Back to project page RoboBinding-gallery.
The source code is released under:
Apache License
If you think the Android project RoboBinding-gallery 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 org.robobinding.gallery.model.view; //from w w w .jav a 2s . co m /** * * @since 1.0 * @version $Revision: 1.0 $ * @author Cheng Wei */ public class BooleanVisibility { private boolean visible; public BooleanVisibility() { visible = false; } public boolean getValue() { return visible; } public void nextState() { visible = !visible; } public String describe(String visibleDescription, String invisibleDescription) { return visible?visibleDescription:invisibleDescription; } }