comparison src/java/de/intevation/mxd/reader/FillSymbolReader.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 10e0aa283217
children
comparison
equal deleted inserted replaced
335:4cf94b919725 336:a46adb3697fa
56 /** 56 /**
57 * Default constructor. 57 * Default constructor.
58 */ 58 */
59 public FillSymbolReader() 59 public FillSymbolReader()
60 throws Exception { 60 throws Exception {
61 logger.debug("contructor()"); 61 logger.debug("constructor()");
62 this.symbol = null; 62 this.symbol = null;
63 this.fillSymbol = null; 63 this.fillSymbol = null;
64 } 64 }
65 65
66 /** 66 /**
68 * 68 *
69 * @param symbol The symbol used to display polygons. 69 * @param symbol The symbol used to display polygons.
70 */ 70 */
71 public FillSymbolReader(ISymbol symbol) 71 public FillSymbolReader(ISymbol symbol)
72 throws Exception { 72 throws Exception {
73 logger.debug("contructor(ISymbol)"); 73 logger.debug("constructor(ISymbol)");
74 this.symbol = symbol; 74 this.symbol = symbol;
75 this.fillSymbol = null; 75 this.fillSymbol = null;
76 } 76 }
77 77
78 /** 78 /**
80 * 80 *
81 * @param symbol The symbol used to display polygons. 81 * @param symbol The symbol used to display polygons.
82 */ 82 */
83 public FillSymbolReader(IFillSymbol symbol) 83 public FillSymbolReader(IFillSymbol symbol)
84 throws Exception { 84 throws Exception {
85 logger.debug("contructor(ILineSymbol)"); 85 logger.debug("constructor(ILineSymbol)");
86 this.fillSymbol = symbol; 86 this.fillSymbol = symbol;
87 this.symbol= null; 87 this.symbol= null;
88 } 88 }
89 89
90 /** 90 /**
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)