Changeset 33543 in osm


Ignore:
Timestamp:
2017-08-26T15:40:47+02:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 12666

Location:
applications/editors/josm/plugins/utilsplugin2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/build.xml

    r33522 r33543  
    55    <property name="commit.message" value="[josm_utilsplugin2]: select boundary by double-click; multitagger table highlights"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="12663"/>
     7    <property name="plugin.main.version" value="12666"/>
    88
    99    <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  
    55import java.util.Collection;
    66
    7 import org.openstreetmap.josm.data.osm.search.SearchParseError;
    87import org.openstreetmap.josm.data.osm.search.PushbackTokenizer;
    98import org.openstreetmap.josm.data.osm.search.SearchCompiler;
    109import org.openstreetmap.josm.data.osm.search.SearchCompiler.SimpleMatchFactory;
     10import org.openstreetmap.josm.data.osm.search.SearchParseError;
    1111
    1212public class UtilsSimpleMatchFactory implements SimpleMatchFactory {
     
    2020
    2121    @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 {
    2324        if ("usedinways".equals(keyword)) {
    2425            return new UsedInWaysMatch(tokenizer);
Note: See TracChangeset for help on using the changeset viewer.