Class LambertCC9ZonesProjectionChoice
- java.lang.Object
-
- org.openstreetmap.josm.gui.preferences.projection.AbstractProjectionChoice
-
- org.openstreetmap.josm.gui.preferences.projection.ListProjectionChoice
-
- org.openstreetmap.josm.gui.preferences.projection.LambertCC9ZonesProjectionChoice
-
- All Implemented Interfaces:
ProjectionChoice
public class LambertCC9ZonesProjectionChoice extends ListProjectionChoice
ProjectionChoice for Lambert CC (9 zones, EPSG:3942-3950).- See Also:
- Lambert CC
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
LambertCC9ZonesProjectionChoice.LambertCC9CBPanel
-
Nested classes/interfaces inherited from class org.openstreetmap.josm.gui.preferences.projection.ListProjectionChoice
ListProjectionChoice.CBPanel
-
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String[]
LAMBERT_9_ZONES
-
Fields inherited from class org.openstreetmap.josm.gui.preferences.projection.ListProjectionChoice
defaultIndex, entries, index, label
-
Fields inherited from class org.openstreetmap.josm.gui.preferences.projection.AbstractProjectionChoice
id, name
-
-
Constructor Summary
Constructors Constructor Description LambertCC9ZonesProjectionChoice()
Constructs a newLambertCC9ZonesProjectionChoice
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String[]
allCodes()
Return all projection codes supported by this projection choice.java.lang.String
getCurrentCode()
Returns current projection code.javax.swing.JPanel
getPreferencePanel(java.awt.event.ActionListener listener)
Generate and provide the GUI.java.util.Collection<java.lang.String>
getPreferencesFromCode(java.lang.String code)
Get Preferences from projection code.java.lang.String
getProjectionName()
Returns projection name.protected java.lang.String
indexToZone(int idx)
Convert 0-based index to preference value.protected int
zoneToIndex(java.lang.String zone)
Convert preference value to 0-based index.-
Methods inherited from class org.openstreetmap.josm.gui.preferences.projection.ListProjectionChoice
getPreferences, setPreferences
-
Methods inherited from class org.openstreetmap.josm.gui.preferences.projection.AbstractProjectionChoice
getId, getProjection, toString
-
-
-
-
Field Detail
-
LAMBERT_9_ZONES
private static final java.lang.String[] LAMBERT_9_ZONES
-
-
Constructor Detail
-
LambertCC9ZonesProjectionChoice
public LambertCC9ZonesProjectionChoice()
Constructs a newLambertCC9ZonesProjectionChoice
.
-
-
Method Detail
-
getPreferencePanel
public javax.swing.JPanel getPreferencePanel(java.awt.event.ActionListener listener)
Description copied from interface:ProjectionChoice
Generate and provide the GUI. It will be displayed to the user. Call the listener, when the user makes changes in the GUI, so the projection info in the top panel gets updated.- Specified by:
getPreferencePanel
in interfaceProjectionChoice
- Overrides:
getPreferencePanel
in classListProjectionChoice
- Parameters:
listener
- listener for any change of preferences- Returns:
- the GUI panel
-
getCurrentCode
public java.lang.String getCurrentCode()
Description copied from class:AbstractProjectionChoice
Returns current projection code.- Specified by:
getCurrentCode
in classAbstractProjectionChoice
- Returns:
- current projection code
-
getProjectionName
public java.lang.String getProjectionName()
Description copied from class:AbstractProjectionChoice
Returns projection name.- Specified by:
getProjectionName
in classAbstractProjectionChoice
- Returns:
- projection name
-
allCodes
public java.lang.String[] allCodes()
Description copied from interface:ProjectionChoice
Return all projection codes supported by this projection choice.- Returns:
- all supported projection codes
-
getPreferencesFromCode
public java.util.Collection<java.lang.String> getPreferencesFromCode(java.lang.String code)
Description copied from interface:ProjectionChoice
Get Preferences from projection code.- Parameters:
code
- projection code- Returns:
- null when code is not part of this projection choice. An empty Collection as return value indicates, that the code is supported, but no preferences are required to set it up.
-
indexToZone
protected java.lang.String indexToZone(int idx)
Description copied from class:ListProjectionChoice
Convert 0-based index to preference value.- Specified by:
indexToZone
in classListProjectionChoice
- Parameters:
idx
- 0-based index- Returns:
- preference value
- See Also:
ListProjectionChoice.zoneToIndex(java.lang.String)
-
zoneToIndex
protected int zoneToIndex(java.lang.String zone)
Description copied from class:ListProjectionChoice
Convert preference value to 0-based index.- Specified by:
zoneToIndex
in classListProjectionChoice
- Parameters:
zone
- preference value- Returns:
- 0-based index
- See Also:
ListProjectionChoice.indexToZone(int)
-
-