Package com.nexirius.util.simpletype

Examples of com.nexirius.util.simpletype.SimpleType_long


     * Creates a new instance and initializes its value
     *
     * @param value The initial value
     */
    public LongModel(long value) {
        super(new SimpleType_long(value));
    }
View Full Code Here


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

     *
     * @param i The new value
     */
    public void setLong(long i) {
        setFlag(ModelFlag.EMPTY, false);
        setValue(new SimpleType_long(i));
    }
View Full Code Here

            throws Exception {
        if (text.length() == 0) {
            setLong(0);
            setFlag(ModelFlag.EMPTY, true);
        } else {
            setValue(new SimpleType_long(text));
            setFlag(ModelFlag.EMPTY, false);
        }
    }
View Full Code Here

TOP

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

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.