Changeset 6986 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2014-04-16T00:54:15+02:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools/template_engine
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/template_engine/Condition.java
r4282 r6986 55 55 return sb.toString(); 56 56 } 57 58 57 } -
trunk/src/org/openstreetmap/josm/tools/template_engine/StaticText.java
r4282 r6986 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.tools.template_engine; 3 4 3 5 4 public class StaticText implements TemplateEntry { … … 25 24 return staticText; 26 25 } 27 28 29 26 } -
trunk/src/org/openstreetmap/josm/tools/template_engine/TemplateEntry.java
r4282 r6986 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.tools.template_engine; 3 4 3 5 4 public interface TemplateEntry { -
trunk/src/org/openstreetmap/josm/tools/template_engine/Variable.java
r4431 r6986 3 3 4 4 import java.util.Collection; 5 6 5 7 6 public class Variable implements TemplateEntry { … … 62 61 return special; 63 62 } 64 65 63 }
Note:
See TracChangeset
for help on using the changeset viewer.