source:
josm/trunk/src/org/openstreetmap/josm/data/osm/NameFormatter.java@
2686
Last change on this file since 2686 was 2686, checked in by , 16 years ago | |
---|---|
File size: 262 bytes |
Line | |
---|---|
1 | // License: GPL. For details, see LICENSE file. |
2 | package org.openstreetmap.josm.data.osm; |
3 | |
4 | |
5 | public 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.