source: josm/trunk/src/org/openstreetmap/josm/tools/template_engine/TemplateEntry.java@ 9992

Last change on this file since 9992 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: 285 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools.template_engine;
3
4public interface TemplateEntry {
5 void appendText(StringBuilder result, TemplateEngineDataProvider dataProvider);
6
7 boolean isValid(TemplateEngineDataProvider dataProvider);
8}
Note: See TracBrowser for help on using the repository browser.