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 classParallelWayAction.KeyboardModifiersPropertyA 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 classAbstractToStringProperty.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.classBooleanPropertyA property containing aBooleanvalue.classDoublePropertyA property containing anDoublevalue.classIntegerPropertyA property containing anIntegervalue.classLongPropertyA property containing anLongvalue.classNamedColorPropertyA property containing aColorvalue with additional information associated to it.classStringPropertyA property containing anStringvalue.classStrokePropertyA property that stores aBasicStroke.Fields in org.openstreetmap.josm.data.preferences declared as AbstractToStringProperty Modifier and Type Field Description private AbstractToStringProperty<T>AbstractToStringProperty.ChildProperty. parentMethods in org.openstreetmap.josm.data.preferences that return AbstractToStringProperty Modifier and Type Method Description protected AbstractToStringProperty<T>AbstractToStringProperty. getChildProperty(java.lang.String key)Gets a setting that defaults to this setting if the key is not set.AbstractToStringProperty<T>AbstractToStringProperty. getSpecialized(java.lang.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, java.lang.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. propertyConstructors in org.openstreetmap.josm.gui.mappaint with parameters of type AbstractToStringProperty Constructor Description BooleanStyleSetting(StyleSource parentStyle, java.lang.String label, AbstractToStringProperty<java.lang.Boolean> property)ColorStyleSetting(StyleSource parentStyle, java.lang.String label, AbstractToStringProperty<java.awt.Color> property)PropertyStyleSetting(StyleSource parentStyle, java.lang.String label, java.lang.Class<T> type, AbstractToStringProperty<T> property)
-