Package org.jboss.common.beans.property
Class BigIntegerEditor
- java.lang.Object
-
- java.beans.PropertyEditorSupport
-
- org.jboss.common.beans.property.PropertyEditorSupport<java.math.BigInteger>
-
- org.jboss.common.beans.property.BigIntegerEditor
-
- All Implemented Interfaces:
java.beans.PropertyEditor,PropertyEditor<java.math.BigInteger>
public class BigIntegerEditor extends PropertyEditorSupport<java.math.BigInteger>
A property editor forBigInteger.
-
-
Constructor Summary
Constructors Constructor Description BigIntegerEditor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetAsText(java.lang.String text)Set the property value by parsing a given String.-
Methods inherited from class org.jboss.common.beans.property.PropertyEditorSupport
addPropertyChangeListener, addPropertyChangeListener, firePropertyChange, getAsText, getType, getValue, removePropertyChangeListener, removePropertyChangeListener, setValue
-
-
-
-
Method Detail
-
setAsText
public void setAsText(java.lang.String text)
Description copied from interface:PropertyEditorSet the property value by parsing a given String. May raise java.lang.IllegalArgumentException if either the String is badly formatted or if this kind of property can't be expressed as text.- Specified by:
setAsTextin interfacejava.beans.PropertyEditor- Specified by:
setAsTextin interfacePropertyEditor<java.math.BigInteger>- Specified by:
setAsTextin classPropertyEditorSupport<java.math.BigInteger>- Parameters:
text- The string to be parsed.
-
-