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