comparison src/java/de/intevation/mxd/reader/FeatureClassReader.java @ 31:40c0b4e5f91a

Added utility class to store map attributes.
author Raimund Renkert <rrenkert@intevation.de>
date Mon, 11 Apr 2011 16:04:03 +0200
parents c34c450edb06
children c51376f8e24c
comparison
equal deleted inserted replaced
30:c34c450edb06 31:40c0b4e5f91a
27 //Constructor 27 //Constructor
28 public FeatureClassReader(IClass cl) throws Exception{ 28 public FeatureClassReader(IClass cl) throws Exception{
29 if(cl instanceof FeatureClass) 29 if(cl instanceof FeatureClass)
30 this.fclass = cl; 30 this.fclass = cl;
31 else 31 else
32 throw new Exception("Not a FeatureClass object!"); 32 throw new Exception("Not a FeatureClass object!" +
33 cl.getClass().toString());
33 } 34 }
34 35
35 //Methods 36 //Methods
36 /** 37 /**
37 * Reads the Layer content. 38 * Reads the Layer content.
38 */ 39 */
39 public boolean read() throws IOException{ 40 public boolean read() throws IOException{
41
40 logger.debug("read()"); 42 logger.debug("read()");
41 return false; 43 return false;
42 } 44 }
43 45
44 public void getClassDoc() throws IOException{ 46 public void getClassDoc() throws IOException{
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)