001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.preferences.projection;
003
004/**
005 * ProjectionChoice can implement this interface to set some additional options
006 */
007public interface SubPrefsOptions {
008
009    /**
010     * @return true, if the projection code should be displayed in the top panel
011     */
012    boolean showProjectionCode();
013
014    /**
015     * @return true, if the projection name should be displayed in the top panel
016     */
017    boolean showProjectionName();
018}