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

Last change on this file since 6362 was 4431, checked in by jttt, 13 years ago

Custom primitive name formatters via tagging presets

File size: 397 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.actions.search.SearchCompiler.Match;
7
8public interface TemplateEngineDataProvider {
9 Collection<String> getTemplateKeys();
10 Object getTemplateValue(String name, boolean special);
11 boolean evaluateCondition(Match condition);
12}
Note: See TracBrowser for help on using the repository browser.