source: josm/trunk/src/org/openstreetmap/josm/data/preferences/sources/SourceType.java@ 12649

Last change on this file since 12649 was 12649, checked in by Don-vip, 7 years ago

see #15182 - code refactoring to avoid dependence on GUI packages from Preferences

  • Property svn:eol-style set to native
File size: 442 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.preferences.sources;
3
4/**
5 * The different types of source entries.
6 * @since 12649 (moved from gui.preferences package)
7 * @since 6670
8 */
9public enum SourceType {
10 /** Entry for a map paint style **/
11 MAP_PAINT_STYLE,
12 /** Entry for a tagging preset **/
13 TAGGING_PRESET,
14 /** Entry for a validator tag checker rule **/
15 TAGCHECKER_RULE
16}
Note: See TracBrowser for help on using the repository browser.