Class AbsoluteDdCoordinateEditorModel
- java.lang.Object
-
- org.jdesktop.beans.AbstractBean
-
- org.jdesktop.beans.AbstractSerializableBean
-
- org.nuiton.jaxx.widgets.gis.DdCoordinate
-
- org.nuiton.jaxx.widgets.gis.absolute.AbsoluteDdCoordinateEditorModel
-
- All Implemented Interfaces:
Serializable
public class AbsoluteDdCoordinateEditorModel extends DdCoordinate
Created on 9/2/14.- Since:
- 2.12
- Author:
- Tony Chemit - dev@tchemit.fr
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ObjectbeanBean where to push data.static StringPROPERTY_BEANstatic StringPROPERTY_PROPERTY_DECIMALstatic StringPROPERTY_PROPERTY_DEGREEprotected StringpropertyDecimalName of the property of the bean to fire the change of theDdCoordinate.decimal.protected StringpropertyDegreeName of the property of the bean to fire the change of theDdCoordinate.degree.-
Fields inherited from class org.nuiton.jaxx.widgets.gis.DdCoordinate
COORDINATE_PATTERN, COORDINATE_STRING_PATTERN, decimal, degree, PROPERTY_DECIMAL, PROPERTY_DEGREE, PROPERTY_SIGN, sign
-
-
Constructor Summary
Constructors Constructor Description AbsoluteDdCoordinateEditorModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetBean()StringgetPropertyDecimal()StringgetPropertyDegree()StringgetStringPattern()booleanisSign()voidsetBean(Object bean)voidsetPropertyDecimal(String propertyDecimal)voidsetPropertyDegree(String propertyDegree)voidsetSign(boolean sign)voidsetValue(DdCoordinate value)-
Methods inherited from class org.nuiton.jaxx.widgets.gis.DdCoordinate
addTrailingZero, empty, fromDecimal, getDecimal, getDegree, getNotNullDecimal, getNotNullDegree, getSignedDegree, isDecimalNull, isDecimalValid, isDegreeNull, isDegreeValid, isLatitudeDegreeValid, isLongitudeDegreeValid, isNull, removeTrailingZero, reset, setDecimal, setDegree, toDecimal, toString, valueOf, valueOf, valueOf
-
Methods inherited from class org.jdesktop.beans.AbstractBean
addPropertyChangeListener, addPropertyChangeListener, addVetoableChangeListener, addVetoableChangeListener, clone, fireIndexedPropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, fireVetoableChange, getPropertyChangeListeners, getPropertyChangeListeners, getVetoableChangeListeners, getVetoableChangeListeners, hasPropertyChangeListeners, hasVetoableChangeListeners, removePropertyChangeListener, removePropertyChangeListener, removeVetoableChangeListener, removeVetoableChangeListener
-
-
-
-
Field Detail
-
PROPERTY_BEAN
public static final String PROPERTY_BEAN
- See Also:
- Constant Field Values
-
PROPERTY_PROPERTY_DEGREE
public static final String PROPERTY_PROPERTY_DEGREE
- See Also:
- Constant Field Values
-
PROPERTY_PROPERTY_DECIMAL
public static final String PROPERTY_PROPERTY_DECIMAL
- See Also:
- Constant Field Values
-
bean
protected Object bean
Bean where to push data.
-
propertyDegree
protected String propertyDegree
Name of the property of the bean to fire the change of theDdCoordinate.degree.
-
propertyDecimal
protected String propertyDecimal
Name of the property of the bean to fire the change of theDdCoordinate.decimal.
-
-
Method Detail
-
getBean
public Object getBean()
-
setBean
public void setBean(Object bean)
-
getPropertyDegree
public String getPropertyDegree()
-
setPropertyDegree
public void setPropertyDegree(String propertyDegree)
-
getPropertyDecimal
public String getPropertyDecimal()
-
setPropertyDecimal
public void setPropertyDecimal(String propertyDecimal)
-
setValue
public void setValue(DdCoordinate value)
-
getStringPattern
public String getStringPattern()
-
isSign
public boolean isSign()
- Overrides:
isSignin classDdCoordinate
-
setSign
public void setSign(boolean sign)
- Overrides:
setSignin classDdCoordinate
-
-