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

Last change on this file since 8510 was 8510, checked in by Don-vip, 11 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 429 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(Node node);
8
9 String format(Way way);
10
11 String format(Relation relation);
12
13 String format(Changeset changeset);
14
15 Comparator<Node> getNodeComparator();
16
17 Comparator<Way> getWayComparator();
18
19 Comparator<Relation> getRelationComparator();
20}
Note: See TracBrowser for help on using the repository browser.