Changeset 3215 in josm for trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionListItem.java
- Timestamp:
- 03.05.2010 10:52:48 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionListItem.java
r3214 r3215 25 25 * constructor 26 26 */ 27 public AutoCompletionListItem(String value, AutoCompletionItemPritority priority) { 28 this.value = value; 29 this.priority = priority; 30 } 31 32 public AutoCompletionListItem(String value) { 33 this.value = value; 34 priority = AutoCompletionItemPritority.UNKNOWN; 35 } 36 27 37 public AutoCompletionListItem() { 28 38 value = ""; … … 30 40 } 31 41 32 public AutoCompletionListItem(String value, AutoCompletionItemPritority priority) {33 this.value = value;34 this.priority = priority;35 }36 42 37 43 /**
Note: See TracChangeset
for help on using the changeset viewer.
