Ignore:
Timestamp:
2010-07-25T16:00:01+02:00 (14 years ago)
Author:
jttt
Message:

Fix warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java

    r3121 r3385  
    5252 * This wizard walks the user to the necessary steps to retrieve an OAuth Access Token which
    5353 * allows JOSM to access the OSM API on the users behalf.
    54  * 
     54 *
    5555 */
    5656public class OAuthAuthorizationWizard extends JDialog {
     
    7070    /**
    7171     * Builds the row with the action buttons
    72      * 
     72     *
    7373     * @return
    7474     */
     
    9090    /**
    9191     * Builds the panel with general information in the header
    92      * 
     92     *
    9393     * @return
    9494     */
     
    207207    /**
    208208     * Creates the wizard.
    209      * 
     209     *
    210210     * @param apiUrl the API URL. Must not be null.
    211211     * @throws IllegalArgumentException thrown if apiUrl is null
     
    220220    /**
    221221     * Creates the wizard.
    222      * 
     222     *
    223223     * @param parent the component relative to which the dialog is displayed
    224224     * @param apiUrl the API URL. Must not be null.
     
    235235     * Sets the API URL for the API for which this wizard is generating
    236236     * an Access Token.
    237      * 
     237     *
    238238     * @param apiUrl the API URL. Must not be null.
    239239     * @throws IllegalArgumentException thrown if apiUrl is null
     
    256256    /**
    257257     * Replies true if the dialog was cancelled
    258      * 
     258     *
    259259     * @return true if the dialog was cancelled
    260260     */
     
    274274    /**
    275275     * Replies the Access Token entered using the wizard
    276      * 
     276     *
    277277     * @return the access token. May be null if the wizard was canceled.
    278278     */
     
    283283    /**
    284284     * Replies the current OAuth parameters.
    285      * 
     285     *
    286286     * @return the current OAuth parameters.
    287287     */
     
    293293     * Replies true if the currently selected Access Token shall be saved to
    294294     * the preferences.
    295      * 
     295     *
    296296     * @return true if the currently selected Access Token shall be saved to
    297297     * the preferences
     
    303303    /**
    304304     * Initializes the dialog with values from the preferences
    305      * 
     305     *
    306306     */
    307307    public void initFromPreferences() {
     
    389389    }
    390390
    391     class ExternalBrowserLauncher implements HyperlinkListener {
     391    static class ExternalBrowserLauncher implements HyperlinkListener {
    392392        public void hyperlinkUpdate(HyperlinkEvent e) {
    393393            if (e.getEventType().equals(HyperlinkEvent.EventType.ACTIVATED)) {
Note: See TracChangeset for help on using the changeset viewer.