Ignore:
Timestamp:
2009-11-24T10:45:04+01:00 (15 years ago)
Author:
stoecker
Message:

i18n updated, fixed files to reduce problems when applying patches, fix #4017

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/SaveLayerInfo.java

    r2181 r2512  
    1010 * SaveLayerInfo represents the information, user preferences and save/upload states of
    1111 * a layer which might be uploaded/saved.
    12  * 
     12 *
    1313 */
    1414class SaveLayerInfo implements Comparable<SaveLayerInfo> {
     
    2323
    2424    /**
    25      * 
     25     *
    2626     * @param layer the layer. Must not be null.
    2727     * @throws IllegalArgumentException thrown if layer is null
     
    3838    /**
    3939     * Replies the layer this info objects holds information for
    40      * 
     40     *
    4141     * @return the layer this info objects holds information for
    4242     */
     
    4747    /**
    4848     * Replies true if this layer should be saved to a file; false, otherwise
    49      * 
     49     *
    5050     * @return true if this layers should be saved to a file; false, otherwise
    5151     */
     
    5656    /**
    5757     * Sets whether this layer should be saved to a file
    58      * 
     58     *
    5959     * @param doSaveToFile true to save; false, to skip saving
    6060     */
     
    6565    /**
    6666     * Replies true if this layer should be uploaded to the server; false, otherwise
    67      * 
     67     *
    6868     * @return true if this layer should be uploaded to the server; false, otherwise
    6969     */
     
    7474    /**
    7575     * Sets whether this layer should be uploaded to a file
    76      * 
     76     *
    7777     * @param doSaveToFile true to upload; false, to skip uploading
    7878     */
     
    8484    /**
    8585     * Replies true if this layer should be uploaded to the server and saved to file.
    86      * 
     86     *
    8787     * @return true if this layer should be uploaded to the server and saved to file
    8888     */
     
    9393    /**
    9494     * Replies the name of the layer
    95      * 
     95     *
    9696     * @return the name of the layer
    9797     */
     
    102102    /**
    103103     * Replies the file this layer should be saved to, if {@see #isDoSaveToFile()} is true
    104      * 
     104     *
    105105     * @return the file this layer should be saved to, if {@see #isDoSaveToFile()} is true
    106106     */
     
    111111    /**
    112112     * Sets the file this layer should be saved to, if {@see #isDoSaveToFile()} is true
    113      * 
     113     *
    114114     * @param file the file
    115115     */
     
    147147     *   <li>{@see UploadOrSaveState#FAILED} if uploading {@see #getLayer() has failed</li>
    148148     * </ul>
    149      * 
     149     *
    150150     * @return the upload state
    151151     */
     
    156156    /**
    157157     * Sets the upload state for {@see #getLayer()}
    158      * 
     158     *
    159159     * @param uploadState the upload state
    160160     */
     
    170170     *   <li>{@see UploadOrSaveState#FAILED} if saving {@see #getLayer() has failed</li>
    171171     * </ul>
    172      * 
     172     *
    173173     * @return the save state
    174174     */
     
    179179    /**
    180180     * Sets the save state for {@see #getLayer()}
    181      * 
     181     *
    182182     * @param saveState save the upload state
    183183     */
     
    188188    /**
    189189     * Resets the upload and save state
    190      * 
     190     *
    191191     * @see #setUploadState(UploadOrSaveState)
    192192     * @see #setSaveState(UploadOrSaveState)
Note: See TracChangeset for help on using the changeset viewer.