Ignore:
Timestamp:
06.02.2010 17:37:52 (2 years ago)
Author:
bastiK
Message:

autocompletion: Always add the preset keys/values to the autocompletion list.
Does not apply to the Properties dialog, because it has a seperate implementation of the autocompletion feature.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionItemPritority.java

    r2512 r2946  
    44public enum AutoCompletionItemPritority implements Comparable<AutoCompletionItemPritority> { 
    55 
    6     /** indicates that a value is in the current selection */ 
     6    /** Indicates that a value is in the current selection. */ 
    77    IS_IN_SELECTION, 
    88 
    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). 
    1119     */ 
    1220    IS_IN_STANDARD, 
    1321 
    1422    /** 
    15      * indicates that this is an arbitrary value from the data set, i.e. 
    16      * the value of a tag name=xxx 
     23     * Indicates that this is an arbitrary value from the data set, i.e. 
     24     * the value of a tag name=*. 
    1725     */ 
    1826    IS_IN_DATASET, 
    1927 
    20     /** unknown priority. This is the lowest priority. */ 
     28    /** Unknown priority. This is the lowest priority. */ 
    2129    UNKNOWN 
    2230} 
Note: See TracChangeset for help on using the changeset viewer.