Up

GSWeb: Class GSWHTMLRawParser

Authors

Manuel Guesdon (mguesdon@orange-concept.com)

Version: 1.1

Date: 2004/03/25 08:25:48

Copyright: (C) 2004 Free Software Foundation, Inc.

Software documentation for the GSWHTMLRawParser class

GSWHTMLRawParser : GSWBaseParser

Declared in:
Foundation/GSWHTMLRawParser.h
Standards:

'Raw' HTML Parser It interpret only dynamic tags (gsweb/wo/oog) and comments All other text is considered as raw text.


Instance Variables

Method summary

parserWithDelegate: htmlString: 

+ (GSWHTMLRawParser*) parserWithDelegate: (id<GSWTemplateParserDelegate>)delegate htmlString: (NSString*)htmlString;

Description forthcoming.


initWithDelegate: htmlString: 

- (id) initWithDelegate: (id<GSWTemplateParserDelegate>)delegate htmlString: (NSString*)htmlString;

Description forthcoming.


parseHTML 

- (void) parseHTML;

Parse the html _string and call delegate methods May raise exception.




Instance Variables for GSWHTMLRawParser Class

_delegate

@protected id<GSWTemplateParserDelegate> _delegate;

Delegate
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_textStartIndex

@protected int _textStartIndex;

raw text start index
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_textStopIndex

@protected int _textStopIndex;

raw text stop index
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.






Up