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 * @since 5226
007 */
008public interface SubPrefsOptions {
009
010    /**
011     * Determines if the projection code should be displayed in the top panel.
012     * @return true, if the projection code should be displayed in the top panel
013     */
014    boolean showProjectionCode();
015
016    /**
017     * Determines if the projection name should be displayed in the top panel.
018     * @return true, if the projection name should be displayed in the top panel
019     */
020    boolean showProjectionName();
021}