comparison src/java/de/intevation/mxd/reader/PictureFillSymbolReader.java @ 336:a46adb3697fa

Fix annoying typo. s/contructor/constructor
author Andre Heinecke <aheinecke@intevation.de>
date Mon, 05 Nov 2012 16:28:36 +0100
parents 2cb2f26d0d54
children
comparison
equal deleted inserted replaced
335:4cf94b919725 336:a46adb3697fa
57 */ 57 */
58 private PictureFillSymbol symbol; 58 private PictureFillSymbol symbol;
59 59
60 public PictureFillSymbolReader(ISymbol symbol) 60 public PictureFillSymbolReader(ISymbol symbol)
61 throws Exception { 61 throws Exception {
62 logger.debug("contructor()"); 62 logger.debug("constructor()");
63 if(symbol instanceof PictureFillSymbol) { 63 if(symbol instanceof PictureFillSymbol) {
64 this.symbol = (PictureFillSymbol)symbol; 64 this.symbol = (PictureFillSymbol)symbol;
65 } 65 }
66 else { 66 else {
67 throw new Exception("Not a PictureFillSymbol!"); 67 throw new Exception("Not a PictureFillSymbol!");
68 } 68 }
69 } 69 }
70 70
71 public PictureFillSymbolReader(IFillSymbol symbol) 71 public PictureFillSymbolReader(IFillSymbol symbol)
72 throws Exception { 72 throws Exception {
73 logger.debug("contructor()"); 73 logger.debug("constructor()");
74 if(symbol instanceof PictureFillSymbol) { 74 if(symbol instanceof PictureFillSymbol) {
75 this.symbol = (PictureFillSymbol)symbol; 75 this.symbol = (PictureFillSymbol)symbol;
76 } 76 }
77 else { 77 else {
78 throw new Exception("Not a PictureFillSymbol!"); 78 throw new Exception("Not a PictureFillSymbol!");
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)