Mercurial > mxd2map
comparison src/java/de/intevation/mxd/reader/ArrowMarkerSymbolReader.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 | df4e0946ef02 |
children |
comparison
equal
deleted
inserted
replaced
335:4cf94b919725 | 336:a46adb3697fa |
---|---|
56 * | 56 * |
57 * @param symbol The symbol used to display points. | 57 * @param symbol The symbol used to display points. |
58 */ | 58 */ |
59 public ArrowMarkerSymbolReader(ISymbol symbol) | 59 public ArrowMarkerSymbolReader(ISymbol symbol) |
60 throws Exception { | 60 throws Exception { |
61 logger.debug("contructor()"); | 61 logger.debug("constructor()"); |
62 if(symbol instanceof ArrowMarkerSymbol) { | 62 if(symbol instanceof ArrowMarkerSymbol) { |
63 this.symbol = (ArrowMarkerSymbol)symbol; | 63 this.symbol = (ArrowMarkerSymbol)symbol; |
64 } | 64 } |
65 else { | 65 else { |
66 throw new Exception("Not a ArrowMarkerSymbol!"); | 66 throw new Exception("Not a ArrowMarkerSymbol!"); |
72 * | 72 * |
73 * @param symbol The symbol used to display points. | 73 * @param symbol The symbol used to display points. |
74 */ | 74 */ |
75 public ArrowMarkerSymbolReader(IMarkerSymbol symbol) | 75 public ArrowMarkerSymbolReader(IMarkerSymbol symbol) |
76 throws Exception { | 76 throws Exception { |
77 logger.debug("contructor()"); | 77 logger.debug("constructor()"); |
78 if(symbol instanceof ArrowMarkerSymbol) { | 78 if(symbol instanceof ArrowMarkerSymbol) { |
79 this.symbol = (ArrowMarkerSymbol)symbol; | 79 this.symbol = (ArrowMarkerSymbol)symbol; |
80 } | 80 } |
81 else { | 81 else { |
82 throw new Exception("Not a ArrowMarkerSymbol!"); | 82 throw new Exception("Not a ArrowMarkerSymbol!"); |