Uses of Class
org.openstreetmap.josm.data.preferences.sources.SourceType
-
Packages that use SourceType Package Description org.openstreetmap.josm.data.preferences.sources Provide classes to manage source of JOSM extensions that can be chosen in user preferences: map paint styles tagging presets validator rulesorg.openstreetmap.josm.gui.preferences Provides generic classes for handling JOSM preferences.org.openstreetmap.josm.io Provides the classes for JOSM input/output support. -
-
Uses of SourceType in org.openstreetmap.josm.data.preferences.sources
Fields in org.openstreetmap.josm.data.preferences.sources declared as SourceType Modifier and Type Field Description SourceType
SourceEntry. type
The type of source entry.protected SourceType
SourcePrefHelper. type
Methods in org.openstreetmap.josm.data.preferences.sources that return SourceType Modifier and Type Method Description static SourceType
SourceType. valueOf(String name)
Returns the enum constant of this type with the specified name.static SourceType[]
SourceType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.openstreetmap.josm.data.preferences.sources with parameters of type SourceType Constructor Description ExtendedSourceEntry(SourceType type, String simpleFileName, String url)
Constructs a newExtendedSourceEntry
.SourceEntry(SourceType type, String url, boolean isZip, String zipEntryPath, String name, String title, boolean active)
Constructs a newSourceEntry
.SourceEntry(SourceType type, String url, String name, String title, boolean active)
Constructs a newSourceEntry
.SourcePrefHelper(String pref, SourceType type)
Constructs a newSourcePrefHelper
for the given preference key. -
Uses of SourceType in org.openstreetmap.josm.gui.preferences
Fields in org.openstreetmap.josm.gui.preferences declared as SourceType Modifier and Type Field Description protected SourceType
SourceEditor. sourceType
the type of source entryConstructors in org.openstreetmap.josm.gui.preferences with parameters of type SourceType Constructor Description SourceEditor(SourceType sourceType, String availableSourcesUrl, List<SourceProvider> sourceProviders, boolean handleIcons)
Constructs a newSourceEditor
. -
Uses of SourceType in org.openstreetmap.josm.io
Fields in org.openstreetmap.josm.io with type parameters of type SourceType Modifier and Type Field Description private static Map<SourceType,Consumer<SourceEntry>>
FileWatcher. loaderMap
Methods in org.openstreetmap.josm.io with parameters of type SourceType Modifier and Type Method Description static Consumer<SourceEntry>
FileWatcher. registerLoader(SourceType type, Consumer<SourceEntry> loader)
Registers a source loader, allowing dynamic reloading when an entry changes.
-