- Timestamp:
- 2010-02-18T11:52:54+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TagCellEditor.java
r2974 r3014 22 22 static private Logger logger = Logger.getLogger(TagCellEditor.class.getName()); 23 23 24 pr ivateAutoCompletingTextField editor = null;25 pr ivateTagModel currentTag = null;24 protected AutoCompletingTextField editor = null; 25 protected TagModel currentTag = null; 26 26 27 27 /** the cache of auto completion items derived from the current JOSM data set */ 28 pr ivateAutoCompletionCache acCache = null;28 protected AutoCompletionCache acCache = null; 29 29 30 30 /** user input is matched against this list of auto completion items */ 31 pr ivateAutoCompletionList autoCompletionList = null;31 protected AutoCompletionList autoCompletionList = null; 32 32 33 33 /**
Note:
See TracChangeset
for help on using the changeset viewer.