001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.osm.history;
003
004public interface HistoryNameFormatter {
005    String format(HistoryNode node);
006
007    String format(HistoryWay node);
008
009    String format(HistoryRelation node);
010}