Changeset 34629 in osm for applications/editors
- Timestamp:
- 2018-09-10T23:49:28+02:00 (6 years ago)
- 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 42 42 } 43 43 44 /** 45 * Determines whether to download water layer 46 * @return whether to download water layer 47 */ 44 48 public final boolean isDownloadWater() { 45 49 return downloadWater; 46 50 } 47 51 52 /** 53 * Determines whether to download building layer 54 * @return whether to download building layer 55 */ 48 56 public final boolean isDownloadBuilding() { 49 57 return downloadBuilding; 50 58 } 51 59 60 /** 61 * Determines whether to download symbol layer 62 * @return whether to download symbol layer 63 */ 52 64 public final boolean isDownloadSymbol() { 53 65 return downloadSymbol; 54 66 } 55 67 68 /** 69 * Determines whether to download parcel layer 70 * @return whether to download parcel layer 71 */ 56 72 public final boolean isDownloadParcel() { 57 73 return downloadParcel; 58 74 } 59 75 76 /** 77 * Determines whether to download parcel number layer 78 * @return whether to download parcel number layer 79 */ 60 80 public final boolean isDownloadParcelNumber() { 61 81 return downloadParcelNumber; 62 82 } 63 83 84 /** 85 * Determines whether to download address layer 86 * @return whether to download address layer 87 */ 64 88 public final boolean isDownloadAddress() { 65 89 return downloadAddress; 66 90 } 67 91 92 /** 93 * Determines whether to download locality layer 94 * @return whether to download locality layer 95 */ 68 96 public final boolean isDownloadLocality() { 69 97 return downloadLocality; 70 98 } 71 99 100 /** 101 * Determines whether to download section layer 102 * @return whether to download section layer 103 */ 72 104 public final boolean isDownloadSection() { 73 105 return downloadSection; 74 106 } 75 107 108 /** 109 * Determines whether to download communal layer 110 * @return whether to download communal layer 111 */ 76 112 public final boolean isDownloadCommune() { 77 113 return downloadCommune;
Note:
See TracChangeset
for help on using the changeset viewer.