Up
Authors
- Manuel Guesdon (
mguesdon@orange-concept.com)
-
Date: Generated at 2025-12-01
Copyright: (C) 2004 Free Software Foundation, Inc.
- Declared in:
- WebObjects/GSWHTMLRawParser.h
Availability: OpenStep
'Raw' HTML Parser It interpret only dynamic tags
(gsweb/wo/oog) and comments All other text is
considered as raw text.
GSWHTMLRawParser declares 3 Instance Variables
- (void)
parseHTML;
Availability: OpenStep
Parse the html _string and call delegate methods May
raise exception.
Instance Variables for GSWHTMLRawParser Class
@protected id
_delegate;
Availability: OpenStep
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.
@protected int _textStartIndex;
Availability: OpenStep
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.
@protected int _textStopIndex;
Availability: OpenStep
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