49505152535455
* Creates an instance and initializes it with a value * * @param value Any array of Objects */ public SimpleArrayModel(Object value[]) { super(new SimpleType_array(value)); }
59606162636465
* * @param value Any array of Objects * @param fieldName The initial field name */ public SimpleArrayModel(Object value[], String fieldName) { super(new SimpleType_array(value), fieldName); }
75767778798081
* Set the new value as array of Object * * @param array The new value */ public void setArray(Object array[]) { setValue(new SimpleType_array(array)); }
131132133134135136137
* @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)); }