source: josm/trunk/src/org/openstreetmap/josm/data/osm/NameFormatter.java@ 2686

Last change on this file since 2686 was 2686, checked in by Gubaer, 16 years ago

Partial commit due to issue described in #4137
Breaks the build

File size: 262 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4
5public interface NameFormatter {
6 String format(Node node);
7 String format(Way way);
8 String format(Relation relation);
9 String format(Changeset changeset);
10}
Note: See TracBrowser for help on using the repository browser.