Uses of Class
org.openstreetmap.josm.data.preferences.AbstractToStringProperty
-
Packages that use AbstractToStringProperty Package Description org.openstreetmap.josm.actions.mapmode Provides the classes for JOSMmap modes
.org.openstreetmap.josm.data.preferences Provides the classes for storing JOSM user preferences.org.openstreetmap.josm.gui.mappaint Drawing system allowing to display and render OSM map data in a user-friendly and customizable way, through map styles.
Two implementations are provided: XML: this was the system used by default JOSM map style for a long time. -
-
Uses of AbstractToStringProperty in org.openstreetmap.josm.actions.mapmode
Subclasses of AbstractToStringProperty in org.openstreetmap.josm.actions.mapmode Modifier and Type Class Description private static class
ParallelWayAction.KeyboardModifiersProperty
A property that holds the keyboard modifiers. -
Uses of AbstractToStringProperty in org.openstreetmap.josm.data.preferences
Subclasses of AbstractToStringProperty in org.openstreetmap.josm.data.preferences Modifier and Type Class Description static class
AbstractToStringProperty.ChildProperty<T>
This is a version of this property that attempts to get the property with a more specialized key and - if that fails - uses the property value as default.class
BooleanProperty
A property containing aBoolean
value.class
DoubleProperty
A property containing anDouble
value.class
IntegerProperty
A property containing anInteger
value.class
LongProperty
A property containing anLong
value.class
NamedColorProperty
A property containing aColor
value with additional information associated to it.class
StringProperty
A property containing anString
value.class
StrokeProperty
A property that stores aBasicStroke
.Fields in org.openstreetmap.josm.data.preferences declared as AbstractToStringProperty Modifier and Type Field Description private AbstractToStringProperty<T>
AbstractToStringProperty.ChildProperty. parent
Methods in org.openstreetmap.josm.data.preferences that return AbstractToStringProperty Modifier and Type Method Description protected AbstractToStringProperty<T>
AbstractToStringProperty. getChildProperty(String key)
Gets a setting that defaults to this setting if the key is not set.AbstractToStringProperty<T>
AbstractToStringProperty. getSpecialized(String spec)
Gets a specialized setting value that has the current value as defaultConstructors in org.openstreetmap.josm.data.preferences with parameters of type AbstractToStringProperty Constructor Description ChildProperty(AbstractToStringProperty<T> parent, String key)
-
Uses of AbstractToStringProperty in org.openstreetmap.josm.gui.mappaint
Fields in org.openstreetmap.josm.gui.mappaint declared as AbstractToStringProperty Modifier and Type Field Description private AbstractToStringProperty<T>
StyleSetting.PropertyStyleSetting. property
Constructors in org.openstreetmap.josm.gui.mappaint with parameters of type AbstractToStringProperty Constructor Description BooleanStyleSetting(StyleSource parentStyle, String label, AbstractToStringProperty<Boolean> property)
ColorStyleSetting(StyleSource parentStyle, String label, AbstractToStringProperty<Color> property)
PropertyStyleSetting(StyleSource parentStyle, String label, Class<T> type, AbstractToStringProperty<T> property)
-