Changeset 34629 in osm for applications


Ignore:
Timestamp:
2018-09-10T23:49:28+02:00 (6 years ago)
Author:
donvip
Message:

javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/download/CadastreDownloadData.java

    r34355 r34629  
    4242    }
    4343
     44    /**
     45     * Determines whether to download water layer
     46     * @return whether to download water layer
     47     */
    4448    public final boolean isDownloadWater() {
    4549        return downloadWater;
    4650    }
    4751
     52    /**
     53     * Determines whether to download building layer
     54     * @return whether to download building layer
     55     */
    4856    public final boolean isDownloadBuilding() {
    4957        return downloadBuilding;
    5058    }
    5159
     60    /**
     61     * Determines whether to download symbol layer
     62     * @return whether to download symbol layer
     63     */
    5264    public final boolean isDownloadSymbol() {
    5365        return downloadSymbol;
    5466    }
    5567
     68    /**
     69     * Determines whether to download parcel layer
     70     * @return whether to download parcel layer
     71     */
    5672    public final boolean isDownloadParcel() {
    5773        return downloadParcel;
    5874    }
    5975
     76    /**
     77     * Determines whether to download parcel number layer
     78     * @return whether to download parcel number layer
     79     */
    6080    public final boolean isDownloadParcelNumber() {
    6181        return downloadParcelNumber;
    6282    }
    6383
     84    /**
     85     * Determines whether to download address layer
     86     * @return whether to download address layer
     87     */
    6488    public final boolean isDownloadAddress() {
    6589        return downloadAddress;
    6690    }
    6791
     92    /**
     93     * Determines whether to download locality layer
     94     * @return whether to download locality layer
     95     */
    6896    public final boolean isDownloadLocality() {
    6997        return downloadLocality;
    7098    }
    7199
     100    /**
     101     * Determines whether to download section layer
     102     * @return whether to download section layer
     103     */
    72104    public final boolean isDownloadSection() {
    73105        return downloadSection;
    74106    }
    75107
     108    /**
     109     * Determines whether to download communal layer
     110     * @return whether to download communal layer
     111     */
    76112    public final boolean isDownloadCommune() {
    77113        return downloadCommune;
Note: See TracChangeset for help on using the changeset viewer.