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