Package com.nexirius.util.simpletype

Examples of com.nexirius.util.simpletype.SimpleType_boolean


     * Creates a instance and initializes the value
     *
     * @param value The initial value
     */
    public BooleanModel(boolean value) {
        super(new SimpleType_boolean(value));
    }
View Full Code Here


     *
     * @param value     The initial value
     * @param fieldName The initial field name
     */
    public BooleanModel(boolean value, String fieldName) {
        super(new SimpleType_boolean(value), fieldName);
    }
View Full Code Here

     * value differs from the new value.
     *
     * @param value The new boolean value which is represented by this model.
     */
    public void setBoolean(boolean value) {
        setValue(new SimpleType_boolean(value));
    }
View Full Code Here

     * @param text The value as text (true or false)
     * @throws Exception If the specified String is not interpreted as a legal boolean
     */
    public void setText(String text)
            throws Exception {
        setValue(new SimpleType_boolean(text));
    }
View Full Code Here

TOP

Related Classes of com.nexirius.util.simpletype.SimpleType_boolean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.