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

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

Allow to specify custom pattern for marker text labels

File size: 368 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools.template_engine;
3
4import java.util.List;
5
6import org.openstreetmap.josm.actions.search.SearchCompiler.Match;
7
8public interface TemplateEngineDataProvider {
9 List<String> getTemplateKeys();
10 Object getTemplateValue(String name);
11 boolean evaluateCondition(Match condition);
12}
Note: See TracBrowser for help on using the repository browser.