Mercurial > mxd2map
comparison src/java/de/intevation/mxd/reader/TextSymbolReader.java @ 181:0bde090506f9
Added comments.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Mon, 11 Jul 2011 14:28:38 +0200 |
parents | f4eb506499f5 |
children | df4e0946ef02 |
comparison
equal
deleted
inserted
replaced
180:f4eb506499f5 | 181:0bde090506f9 |
---|---|
31 /** | 31 /** |
32 * Private member. | 32 * Private member. |
33 */ | 33 */ |
34 private TextSymbol symbol; | 34 private TextSymbol symbol; |
35 | 35 |
36 /** | |
37 * Constructor with text symbol. | |
38 * | |
39 * @param symbol The symbol used to write text. | |
40 */ | |
36 public TextSymbolReader(ITextSymbol symbol) | 41 public TextSymbolReader(ITextSymbol symbol) |
37 throws Exception { | 42 throws Exception { |
38 logger.debug("contructor()"); | 43 logger.debug("contructor()"); |
39 if(symbol instanceof TextSymbol) { | 44 if(symbol instanceof TextSymbol) { |
40 this.symbol = (TextSymbol)symbol; | 45 this.symbol = (TextSymbol)symbol; |