Changeset 6733 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java
- Timestamp:
- 2014-01-19T15:33:15+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java
r6690 r6733 67 67 import org.openstreetmap.josm.tools.LanguageInfo; 68 68 69 /** 70 * Imagery preferences, including imagery providers, settings and offsets. 71 */ 69 72 public final class ImageryPreference extends DefaultTabPreferenceSetting { 70 73 … … 129 132 } 130 133 134 /** 135 * Returns the imagery providers panel. 136 * @return The imagery providers panel. 137 */ 131 138 public ImageryProvidersPanel getProvidersPanel() { 132 139 return imageryProviders; … … 189 196 } 190 197 198 /** 199 * A panel displaying imagery providers. 200 */ 191 201 public static class ImageryProvidersPanel extends JPanel { 192 202 // Public JTables and JMapViewer 203 /** The table of active providers **/ 193 204 public final JTable activeTable; 205 /** The table of default providers **/ 194 206 public final JTable defaultTable; 207 /** The map displaying imagery bounds of selected default providers **/ 195 208 public final JMapViewer defaultMap; 196 209 197 210 // Public models 211 /** The model of active providers **/ 198 212 public final ImageryLayerTableModel activeModel; 213 /** The model of default providers **/ 199 214 public final ImageryDefaultLayerTableModel defaultModel; 200 215 201 216 // Public JToolbars 217 /** The toolbar on the right of active providers **/ 202 218 public final JToolBar activeToolbar; 219 /** The toolbar on the middle of the panel **/ 203 220 public final JToolBar middleToolbar; 221 /** The toolbar on the right of default providers **/ 204 222 public final JToolBar defaultToolbar; 205 223 … … 240 258 } 241 259 260 /** 261 * Constructs a new {@code ImageryProvidersPanel}. 262 * @param gui The parent preference tab pane 263 * @param layerInfoArg The list of imagery entries to display 264 */ 242 265 public ImageryProvidersPanel(final PreferenceTabbedPane gui, ImageryLayerInfo layerInfoArg) { 243 266 super(new GridBagLayout());
Note:
See TracChangeset
for help on using the changeset viewer.
