Changeset 5899 in josm
- Timestamp:
- 2013-04-21T16:34:38+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/DownloadSelection.java
r3083 r5899 15 15 * the current download area. 16 16 * 17 * @param are the current download area 17 * @param area the current download area 18 18 */ 19 19 public void setDownloadArea(Bounds area); -
trunk/src/org/openstreetmap/josm/gui/help/HelpUtil.java
r5266 r5899 209 209 * of {@link HelpAction}. 210 210 * 211 * @return 211 * @return instance of help action 212 212 */ 213 213 static private Action getHelpAction() { … … 227 227 * 228 228 * @param component the component the component 229 * @param topic the help topic. Set to the default help topic if null.229 * @param relativeHelpTopic the help topic. Set to the default help topic if null. 230 230 */ 231 231 static public void setHelpContext(JComponent component, String relativeHelpTopic) { -
trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java
r5627 r5899 337 337 * in time (see {@link PointInTimeType}). 338 338 * 339 * @param referencethe reference history primitive. Must not benull.340 * @throws IllegalArgumentException thrown if reference is null339 * @param current the reference history primitive. Must not be {@code null}. 340 * @throws IllegalArgumentException thrown if reference is {@code null} 341 341 * @throws IllegalStateException thrown if this model isn't a assigned a history yet 342 342 * @throws IllegalArgumentException if reference isn't an history primitive for the history managed by this mode -
trunk/src/org/openstreetmap/josm/gui/io/ChangesetManagementPanel.java
r5429 r5899 37 37 * It is displayed as one of the configuration panels in the {@link UploadDialog}. 38 38 * 39 * ChangesetManagementPanel is a source for {@link PropertyChangeEvent}s. Clients can listen 39 * ChangesetManagementPanel is a source for {@link java.beans.PropertyChangeEvent}s. Clients can listen 40 40 * to 41 41 * <ul> -
trunk/src/org/openstreetmap/josm/gui/io/FilenameCellEditor.java
r5886 r5899 27 27 /** 28 28 * This is a {@link TableCellEditor} for filenames. It provides a text input field and 29 * a button for launchinig a {@link JFileChooser}. 30 * 31 * 29 * a button for launchinig a {@link javax.swing.JFileChooser}. 32 30 */ 33 31 class FilenameCellEditor extends JPanel implements TableCellEditor { -
trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyles.java
r5801 r5899 48 48 * @param osm the primitive 49 49 * @param scale the scale (in meters per 100 pixel) 50 * @param nc 51 * @return 50 * @param nc display component 51 * @return list of styles 52 52 */ 53 53 public StyleList get(OsmPrimitive osm, double scale, NavigatableComponent nc) { -
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java
r5886 r5899 71 71 * Builds the panel with the three privileges the user can grant JOSM 72 72 * 73 * @return 73 * @return constructed panel for the privileges 74 74 */ 75 75 protected VerticallyScrollablePanel buildGrantsPanel() { … … 81 81 * Builds the panel for entering the username and password 82 82 * 83 * @return 83 * @return constructed panel for the creditentials 84 84 */ 85 85 protected VerticallyScrollablePanel buildUserNamePasswordPanel() { … … 180 180 /** 181 181 * Initializes the panel with values from the preferences 182 * @param pref Preferences structure 182 183 */ 183 184 @Override … … 204 205 * Builds the panel with the action button for starting the authorisation 205 206 * 206 * @return 207 * @return constructed button panel 207 208 */ 208 209 protected JPanel buildActionButtonPanel() { … … 219 220 * Builds the panel which displays the generated Access Token. 220 221 * 221 * @return 222 * @return constructed panel for the results 222 223 */ 223 224 protected JPanel buildResultsPanel() { -
trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java
r5422 r5899 69 69 * Builds the row with the action buttons 70 70 * 71 * @return 71 * @return panel with buttons 72 72 */ 73 73 protected JPanel buildButtonRow(){ … … 89 89 * Builds the panel with general information in the header 90 90 * 91 * @return 91 * @return panel woth information display 92 92 */ 93 93 protected JPanel buildHeaderInfoPanel() { -
trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveAccessTokenTask.java
r5266 r5899 100 100 * Replies true if the task was canceled. 101 101 * 102 * @return 102 * @return {@code true} if user aborted operation 103 103 */ 104 104 public boolean isCanceled() { -
trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java
r5631 r5899 54 54 * Builds the tabbed pane with the server preferences 55 55 * 56 * @return 56 * @return panel with server preferences tabs 57 57 */ 58 58 protected JPanel buildTabbedServerPreferences() { … … 77 77 * Builds the panel for entering the server access preferences 78 78 * 79 * @return 79 * @return preferences panel for server settings 80 80 */ 81 81 protected JPanel buildContentPanel() { -
trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java
r5886 r5899 55 55 * Builds the panel for entering the advanced OAuth parameters 56 56 * 57 * @return 57 * @return panel with advanced settings 58 58 */ 59 59 protected JPanel buildAdvancedPropertiesPanel() { -
trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java
r5886 r5899 87 87 * Builds the panel for the HTTP proxy configuration 88 88 * 89 * @return 89 * @return panel with HTTP proxy configuration 90 90 */ 91 91 protected JPanel buildHttpProxyConfigurationPanel() { … … 163 163 * Builds the panel for the SOCKS proxy configuration 164 164 * 165 * @return 165 * @return panel with SOCKS proxy configuration 166 166 */ 167 167 protected JPanel buildSocksProxyConfigurationPanel() { -
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetSearchDialog.java
r5886 r5899 343 343 /** 344 344 * Search expression can be in form: "group1/group2/name" where names can contain multiple words 345 *346 * When groups are given,347 *348 *349 * @param text350 345 */ 351 346 private void filterPresets() { -
trunk/src/org/openstreetmap/josm/gui/widgets/AbstractIdTextField.java
r5886 r5899 29 29 * @param klass The validator class 30 30 * @param columns The number of columns to use to calculate the preferred width 31 * @see JTextField#JTextField(int) 31 * @see JosmTextField#JosmTextField(int) 32 32 */ 33 33 public AbstractIdTextField(Class<T> klass, int columns) { -
trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java
r5886 r5899 28 28 * <li>the content of the text component changes (the validator is a {@link DocumentListener})</li> 29 29 * <li>the text component loses focus (the validator is a {@link FocusListener})</li> 30 * <li>the text component is a {@link JTextField} and an {@link ActionEvent} is detected</li> 30 * <li>the text component is a {@link JosmTextField} and an {@link ActionEvent} is detected</li> 31 31 * </ul> 32 32 * -
trunk/src/org/openstreetmap/josm/gui/widgets/TextContextualPopupMenu.java
r5887 r5899 61 61 * @param component The text component that will display the menu and handle its actions. 62 62 * @return {@code this} 63 * @see #detach( JTextComponent)63 * @see #detach() 64 64 */ 65 65 protected TextContextualPopupMenu attach(JTextComponent component) {
Note:
See TracChangeset
for help on using the changeset viewer.