source: josm/trunk/src/org/openstreetmap/josm/tools/template_engine/TemplateEngineDataProvider.java@ 12788

Last change on this file since 12788 was 12656, checked in by Don-vip, 7 years ago

see #15182 - move SearchCompiler from actions.search to data.osm.search

  • Property svn:eol-style set to native
File size: 401 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools.template_engine;
3
4import java.util.Collection;
5
6import org.openstreetmap.josm.data.osm.search.SearchCompiler.Match;
7
8public interface TemplateEngineDataProvider {
9 Collection<String> getTemplateKeys();
10
11 Object getTemplateValue(String name, boolean special);
12
13 boolean evaluateCondition(Match condition);
14}
Note: See TracBrowser for help on using the repository browser.