Mercurial > mxd2map
comparison src/java/de/intevation/mxd/reader/FeatureLayerReader.java @ 181:0bde090506f9
Added comments.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Mon, 11 Jul 2011 14:28:38 +0200 |
parents | f4eb506499f5 |
children | df4e0946ef02 |
comparison
equal
deleted
inserted
replaced
180:f4eb506499f5 | 181:0bde090506f9 |
---|---|
33 * Privte member. | 33 * Privte member. |
34 */ | 34 */ |
35 private FeatureLayer layer; | 35 private FeatureLayer layer; |
36 private MapToXMLUtils util; | 36 private MapToXMLUtils util; |
37 | 37 |
38 | 38 /** |
39 * Constructor with layer. | |
40 * | |
41 * @param layer The ArcGIS layer object. | |
42 */ | |
39 public FeatureLayerReader(ILayer layer) | 43 public FeatureLayerReader(ILayer layer) |
40 throws Exception { | 44 throws Exception { |
41 if(layer instanceof FeatureLayer) { | 45 if(layer instanceof FeatureLayer) { |
42 this.layer = (FeatureLayer)layer; | 46 this.layer = (FeatureLayer)layer; |
43 } | 47 } |