2474 Constructor |
2474 Constructor |
2475 |
2475 |
2476 @param curLine text to work on (string) |
2476 @param curLine text to work on (string) |
2477 @param prevLine line before the text to work on (string) |
2477 @param prevLine line before the text to work on (string) |
2478 @param nextLine line after the text to work on (string) |
2478 @param nextLine line after the text to work on (string) |
2479 @keyparam maxLength maximum allowed line length (integer) |
2479 @param maxLength maximum allowed line length (integer) |
2480 @keyparam eol eond-of-line marker (string) |
2480 @param eol eond-of-line marker (string) |
2481 @keyparam indentWord string used for indentation (string) |
2481 @param indentWord string used for indentation (string) |
2482 @keyparam isDocString flag indicating that the line belongs to |
2482 @param isDocString flag indicating that the line belongs to |
2483 a documentation string (boolean) |
2483 a documentation string (boolean) |
2484 """ |
2484 """ |
2485 self.__text = curLine |
2485 self.__text = curLine |
2486 self.__prevText = prevLine |
2486 self.__prevText = prevLine |
2487 self.__nextText = nextLine |
2487 self.__nextText = nextLine |