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

Last change on this file since 11057 was 8510, checked in by Don-vip, 9 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 400 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
11 Object getTemplateValue(String name, boolean special);
12
13 boolean evaluateCondition(Match condition);
14}
Note: See TracBrowser for help on using the repository browser.