Last change
on this file since 4100 was 4100, checked in by bastiK, 14 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.
|
---|
2 | package org.openstreetmap.josm.data.osm;
|
---|
3 |
|
---|
4 | import java.util.Comparator;
|
---|
5 |
|
---|
6 | public 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.