Mercurial > mxd2map
comparison src/java/de/intevation/mxd/reader/MarkerSymbolReader.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 |
---|---|
58 * | 58 * |
59 * @param symbol The symbol used to display points. | 59 * @param symbol The symbol used to display points. |
60 */ | 60 */ |
61 public MarkerSymbolReader(ISymbol symbol) | 61 public MarkerSymbolReader(ISymbol symbol) |
62 throws Exception { | 62 throws Exception { |
63 logger.debug("contructor(ISymbol)"); | 63 logger.debug("constructor(ISymbol)"); |
64 this.symbol = symbol; | 64 this.symbol = symbol; |
65 this.markerSymbol = null; | 65 this.markerSymbol = null; |
66 } | 66 } |
67 | 67 |
68 /** | 68 /** |
70 * | 70 * |
71 * @param symbol The symbol used to display points. | 71 * @param symbol The symbol used to display points. |
72 */ | 72 */ |
73 public MarkerSymbolReader(IMarkerSymbol symbol) | 73 public MarkerSymbolReader(IMarkerSymbol symbol) |
74 throws Exception { | 74 throws Exception { |
75 logger.debug("contructor(ISymbol)"); | 75 logger.debug("constructor(ISymbol)"); |
76 this.markerSymbol = symbol; | 76 this.markerSymbol = symbol; |
77 this.symbol = null; | 77 this.symbol = null; |
78 } | 78 } |
79 | 79 |
80 /** | 80 /** |
81 * Default constructor. | 81 * Default constructor. |
82 */ | 82 */ |
83 public MarkerSymbolReader() { | 83 public MarkerSymbolReader() { |
84 logger.debug("contructor()"); | 84 logger.debug("constructor()"); |
85 this.symbol = null; | 85 this.symbol = null; |
86 this.markerSymbol = null; | 86 this.markerSymbol = null; |
87 } | 87 } |
88 | 88 |
89 /** | 89 /** |