comparison src/java/de/intevation/mxd/reader/MarkerFillSymbolReader.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
59 * 59 *
60 * @param symbol The symbol used to display polygons. 60 * @param symbol The symbol used to display polygons.
61 */ 61 */
62 public MarkerFillSymbolReader(ISymbol symbol) 62 public MarkerFillSymbolReader(ISymbol symbol)
63 throws Exception { 63 throws Exception {
64 logger.debug("contructor()"); 64 logger.debug("constructor()");
65 if(symbol instanceof MarkerFillSymbol) { 65 if(symbol instanceof MarkerFillSymbol) {
66 this.symbol = (MarkerFillSymbol)symbol; 66 this.symbol = (MarkerFillSymbol)symbol;
67 } 67 }
68 else { 68 else {
69 throw new Exception("Not a MarkerFillSymbol!"); 69 throw new Exception("Not a MarkerFillSymbol!");
75 * 75 *
76 * @param symbol The symbol used to display polygons. 76 * @param symbol The symbol used to display polygons.
77 */ 77 */
78 public MarkerFillSymbolReader(IFillSymbol symbol) 78 public MarkerFillSymbolReader(IFillSymbol symbol)
79 throws Exception { 79 throws Exception {
80 logger.debug("contructor()"); 80 logger.debug("constructor()");
81 if(symbol instanceof MarkerFillSymbol) { 81 if(symbol instanceof MarkerFillSymbol) {
82 this.symbol = (MarkerFillSymbol)symbol; 82 this.symbol = (MarkerFillSymbol)symbol;
83 } 83 }
84 else { 84 else {
85 throw new Exception("Not a MarkerFillSymbol!"); 85 throw new Exception("Not a MarkerFillSymbol!");
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)