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

Last change on this file since 4153 was 4100, checked in by bastiK, 13 years ago

use IPrimitive to make upload code work for both OsmPrimitive and PrimitiveData

  • Property svn:eol-style set to native
File size: 427 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4import java.util.Comparator;
5
6public interface NameFormatter {
7 String format(INode node);
8 String format(IWay way);
9 String format(IRelation relation);
10 String format(Changeset changeset);
11
12 Comparator<Node> getNodeComparator();
13 Comparator<Way> getWayComparator();
14 Comparator<Relation> getRelationComparator();
15}
Note: See TracBrowser for help on using the repository browser.