Changeset 5899 in josm


Ignore:
Timestamp:
2013-04-21T16:34:38+02:00 (11 years ago)
Author:
stoecker
Message:

fix javadoc

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  
    1515     * the current download area.
    1616     *
    17      * @param are the current download area
     17     * @param area the current download area
    1818     */
    1919    public void setDownloadArea(Bounds area);
  • trunk/src/org/openstreetmap/josm/gui/help/HelpUtil.java

    r5266 r5899  
    209209     * of {@link HelpAction}.
    210210     *
    211      * @return
     211     * @return instance of help action
    212212     */
    213213    static private Action getHelpAction() {
     
    227227     *
    228228     * @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.
    230230     */
    231231    static public void setHelpContext(JComponent component, String relativeHelpTopic) {
  • trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowserModel.java

    r5627 r5899  
    337337     * in time (see {@link PointInTimeType}).
    338338     *
    339      * @param reference the reference history primitive. Must not be null.
    340      * @throws IllegalArgumentException thrown if reference is null
     339     * @param current the reference history primitive. Must not be {@code null}.
     340     * @throws IllegalArgumentException thrown if reference is {@code null}
    341341     * @throws IllegalStateException thrown if this model isn't a assigned a history yet
    342342     * @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  
    3737 * It is displayed as one of the configuration panels in the {@link UploadDialog}.
    3838 *
    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
    4040 * to
    4141 * <ul>
  • trunk/src/org/openstreetmap/josm/gui/io/FilenameCellEditor.java

    r5886 r5899  
    2727/**
    2828 * 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}.
    3230 */
    3331class FilenameCellEditor extends JPanel implements TableCellEditor {
  • trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyles.java

    r5801 r5899  
    4848     * @param osm the primitive
    4949     * @param scale the scale (in meters per 100 pixel)
    50      * @param nc
    51      * @return
     50     * @param nc display component
     51     * @return list of styles
    5252     */
    5353    public StyleList get(OsmPrimitive osm, double scale, NavigatableComponent nc) {
  • trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java

    r5886 r5899  
    7171     * Builds the panel with the three privileges the user can grant JOSM
    7272     *
    73      * @return
     73     * @return constructed panel for the privileges
    7474     */
    7575    protected VerticallyScrollablePanel buildGrantsPanel() {
     
    8181     * Builds the panel for entering the username and password
    8282     *
    83      * @return
     83     * @return constructed panel for the creditentials
    8484     */
    8585    protected VerticallyScrollablePanel buildUserNamePasswordPanel() {
     
    180180    /**
    181181     * Initializes the panel with values from the preferences
     182     * @param pref Preferences structure
    182183     */
    183184    @Override
     
    204205     * Builds the panel with the action button  for starting the authorisation
    205206     *
    206      * @return
     207     * @return constructed button panel
    207208     */
    208209    protected JPanel buildActionButtonPanel() {
     
    219220     * Builds the panel which displays the generated Access Token.
    220221     *
    221      * @return
     222     * @return constructed panel for the results
    222223     */
    223224    protected JPanel buildResultsPanel() {
  • trunk/src/org/openstreetmap/josm/gui/oauth/OAuthAuthorizationWizard.java

    r5422 r5899  
    6969     * Builds the row with the action buttons
    7070     *
    71      * @return
     71     * @return panel with buttons
    7272     */
    7373    protected JPanel buildButtonRow(){
     
    8989     * Builds the panel with general information in the header
    9090     *
    91      * @return
     91     * @return panel woth information display
    9292     */
    9393    protected JPanel buildHeaderInfoPanel() {
  • trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveAccessTokenTask.java

    r5266 r5899  
    100100     * Replies true if the task was canceled.
    101101     *
    102      * @return
     102     * @return {@code true} if user aborted operation
    103103     */
    104104    public boolean isCanceled() {
  • trunk/src/org/openstreetmap/josm/gui/preferences/ServerAccessPreference.java

    r5631 r5899  
    5454     * Builds the tabbed pane with the server preferences
    5555     *
    56      * @return
     56     * @return panel with server preferences tabs
    5757     */
    5858    protected JPanel buildTabbedServerPreferences() {
     
    7777     * Builds the panel for entering the server access preferences
    7878     *
    79      * @return
     79     * @return preferences panel for server settings
    8080     */
    8181    protected JPanel buildContentPanel() {
  • trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java

    r5886 r5899  
    5555     * Builds the panel for entering the advanced OAuth parameters
    5656     *
    57      * @return
     57     * @return panel with advanced settings
    5858     */
    5959    protected JPanel buildAdvancedPropertiesPanel() {
  • trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java

    r5886 r5899  
    8787     * Builds the panel for the HTTP proxy configuration
    8888     *
    89      * @return
     89     * @return panel with HTTP proxy configuration
    9090     */
    9191    protected JPanel buildHttpProxyConfigurationPanel() {
     
    163163     * Builds the panel for the SOCKS proxy configuration
    164164     *
    165      * @return
     165     * @return panel with SOCKS proxy configuration
    166166     */
    167167    protected JPanel buildSocksProxyConfigurationPanel() {
  • trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetSearchDialog.java

    r5886 r5899  
    343343    /**
    344344     * 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 text
    350345     */
    351346    private void filterPresets() {
  • trunk/src/org/openstreetmap/josm/gui/widgets/AbstractIdTextField.java

    r5886 r5899  
    2929     * @param klass The validator class
    3030     * @param columns The number of columns to use to calculate the preferred width
    31      * @see JTextField#JTextField(int)
     31     * @see JosmTextField#JosmTextField(int)
    3232     */
    3333    public AbstractIdTextField(Class<T> klass, int columns) {
  • trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java

    r5886 r5899  
    2828 *   <li>the content of the text component changes (the validator is a {@link DocumentListener})</li>
    2929 *   <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>
    3131 * </ul>
    3232 *
  • trunk/src/org/openstreetmap/josm/gui/widgets/TextContextualPopupMenu.java

    r5887 r5899  
    6161     * @param component The text component that will display the menu and handle its actions.
    6262     * @return {@code this}
    63      * @see #detach(JTextComponent)
     63     * @see #detach()
    6464     */
    6565    protected TextContextualPopupMenu attach(JTextComponent component) {
Note: See TracChangeset for help on using the changeset viewer.