Changeset 33543 in osm for applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap
- Timestamp:
- 2017-08-26T15:40:47+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/search/UtilsSimpleMatchFactory.java
r33522 r33543 5 5 import java.util.Collection; 6 6 7 import org.openstreetmap.josm.data.osm.search.SearchParseError;8 7 import org.openstreetmap.josm.data.osm.search.PushbackTokenizer; 9 8 import org.openstreetmap.josm.data.osm.search.SearchCompiler; 10 9 import org.openstreetmap.josm.data.osm.search.SearchCompiler.SimpleMatchFactory; 10 import org.openstreetmap.josm.data.osm.search.SearchParseError; 11 11 12 12 public class UtilsSimpleMatchFactory implements SimpleMatchFactory { … … 20 20 21 21 @Override 22 public SearchCompiler.Match get(String keyword, PushbackTokenizer tokenizer) throws SearchParseError { 22 public SearchCompiler.Match get(String keyword, boolean caseSensitive, boolean regexSearch, PushbackTokenizer tokenizer) 23 throws SearchParseError { 23 24 if ("usedinways".equals(keyword)) { 24 25 return new UsedInWaysMatch(tokenizer);
Note:
See TracChangeset
for help on using the changeset viewer.