Package com.nexirius.util.simpletype

Examples of com.nexirius.util.simpletype.SimpleType_array


     * Creates an instance and initializes it with a value
     *
     * @param value Any array of Objects
     */
    public SimpleArrayModel(Object value[]) {
        super(new SimpleType_array(value));
    }
View Full Code Here


     *
     * @param value     Any array of Objects
     * @param fieldName The initial field name
     */
    public SimpleArrayModel(Object value[], String fieldName) {
        super(new SimpleType_array(value), fieldName);
    }
View Full Code Here

     * Set the new value as array of Object
     *
     * @param array The new value
     */
    public void setArray(Object array[]) {
        setValue(new SimpleType_array(array));
    }
View Full Code Here

     * @param text The text which is parsed to produce a new simple array value
     * @throws Exception If the text is not parsed correctly
     */
    public void setText(String text)
            throws Exception {
        setValue(new SimpleType_array(text));
    }
View Full Code Here

TOP

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

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.