Changeset 33543 in osm for applications/editors
- Timestamp:
- 2017-08-26T15:40:47+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r33522 r33543 5 5 <property name="commit.message" value="[josm_utilsplugin2]: select boundary by double-click; multitagger table highlights"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="1266 3"/>7 <property name="plugin.main.version" value="12666"/> 8 8 9 9 <property name="plugin.author" value="Kalle Lampila, Upliner, Zverik, akks, joshdoe and others"/> -
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.