Changeset 2946 in josm for trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionItemPritority.java
- Timestamp:
- 06.02.2010 17:37:52 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionItemPritority.java
r2512 r2946 4 4 public enum AutoCompletionItemPritority implements Comparable<AutoCompletionItemPritority> { 5 5 6 /** indicates that a value is in the current selection*/6 /** Indicates that a value is in the current selection. */ 7 7 IS_IN_SELECTION, 8 8 9 /** indicates that this is a standard value, i.e. a standard tag name 10 * or a standard value for a given tag name 9 /** 10 * Indicates, that the value is standard and it is found in the data. 11 * This has higher priority than some arbitrary standard value that is 12 * usually not used by the user. 13 */ 14 IS_IN_STANDARD_AND_IN_DATASET, 15 16 /** 17 * Indicates that this is a standard value, i.e. a standard tag name 18 * or a standard value for a given tag name (from the presets). 11 19 */ 12 20 IS_IN_STANDARD, 13 21 14 22 /** 15 * indicates that this is an arbitrary value from the data set, i.e.16 * the value of a tag name= xxx23 * Indicates that this is an arbitrary value from the data set, i.e. 24 * the value of a tag name=*. 17 25 */ 18 26 IS_IN_DATASET, 19 27 20 /** unknown priority. This is the lowest priority. */28 /** Unknown priority. This is the lowest priority. */ 21 29 UNKNOWN 22 30 }
Note: See TracChangeset
for help on using the changeset viewer.
