source: josm/trunk/src/org/openstreetmap/josm/gui/preferences/projection/SubPrefsOptions.java@ 16553

Last change on this file since 16553 was 16553, checked in by Don-vip, 4 years ago

see #19334 - javadoc fixes + protected constructors for abstract classes

  • Property svn:eol-style set to native
File size: 671 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.preferences.projection;
3
4/**
5 * ProjectionChoice can implement this interface to set some additional options.
6 * @since 5226
7 */
8public interface SubPrefsOptions {
9
10 /**
11 * Determines if the projection code should be displayed in the top panel.
12 * @return true, if the projection code should be displayed in the top panel
13 */
14 boolean showProjectionCode();
15
16 /**
17 * Determines if the projection name should be displayed in the top panel.
18 * @return true, if the projection name should be displayed in the top panel
19 */
20 boolean showProjectionName();
21}
Note: See TracBrowser for help on using the repository browser.