Changeset 33655 in osm for applications/editors/josm/plugins
- Timestamp:
- 2017-09-22T22:25:11+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/edigeo/EdigeoFileTHF.java
r33653 r33655 53 53 /** LOC */ int nLots; 54 54 /** VOC */ int nVolumes; 55 /** */ final List<String> volumeLabels = new ArrayList<>(); // TODO55 /** VOL */ final List<String> volumeLabels = new ArrayList<>(); 56 56 /** SEC */ SecurityClassification security; 57 57 /** RDI */ String diffusionRestriction = ""; … … 74 74 case "LOC": nLots = safeGetInt(r); break; 75 75 case "VOC": nVolumes = safeGetInt(r); break; 76 case "VOL": safeGet(r, volumeLabels); break; 76 77 case "SEC": security = SecurityClassification.of(safeGetInt(r)); break; 77 78 case "RDI": safeGetAndLog(r, s -> diffusionRestriction += s, tr("Diffusion restriction")); break; … … 123 124 public final int getnVolumes() { 124 125 return nVolumes; 126 } 127 128 /** 129 * Returns volume labels. 130 * @return volume labels 131 */ 132 public final List<String> getVolumeLabels() { 133 return Collections.unmodifiableList(volumeLabels); 125 134 } 126 135
Note:
See TracChangeset
for help on using the changeset viewer.