Up

GSWeb: Class GSWBaseParser

Authors

Manuel Guesdon (mguesdon@orange-concept.com)

Version: 1.2

Date: 2004/05/06 13:56:56

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


Contents -

  1. Software documentation for the GSWBaseParser class
  2. GSWBaseParser functions

Software documentation for the GSWBaseParser class

GSWBaseParser : NSObject

Declared in:
Foundation/GSWBaseParser.h
Standards:

Description forthcoming.


Instance Variables

Method summary

currentLineAndColumnIndexesString 

- (NSString*) currentLineAndColumnIndexesString;

Description forthcoming.


currentLineIndex 

- (int) currentLineIndex;

Description forthcoming.


lineAndColumnIndexesFromIndex: returnsLineIndex: columnIndex: 

- (void) lineAndColumnIndexesFromIndex: (int)index returnsLineIndex: (int*)lineIndexPtr columnIndex: (int*)colIndexPtr;

Description forthcoming.


lineAndColumnIndexesStringFromIndex: 

- (NSString*) lineAndColumnIndexesStringFromIndex: (int)index;

Description forthcoming.


lineIndexFromIndex: 

- (int) lineIndexFromIndex: (int)index;

Description forthcoming.




Instance Variables for GSWBaseParser Class

_index

@protected int _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.


_length

@protected int _length;

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.


_string

@protected NSString* _string;

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.


_uniBuf

@protected unichar* _uniBuf;

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.





GSWBaseParser functions

_ParserDebugLogBuffer

void _ParserDebugLogBuffer(char* fn, char* file, int line, unichar* uniBuf, int length, int index, int charsCount);

Description forthcoming.


_parserIsBlankChar

BOOL _parserIsBlankChar(unichar c);

Description forthcoming.


_parserIsDigit

BOOL _parserIsDigit(unichar c);

Description forthcoming.


_parserIsEndOfLineChar

BOOL _parserIsEndOfLineChar(unichar c);

Description forthcoming.


_parserIsHexDigit

BOOL _parserIsHexDigit(unichar c);

Description forthcoming.



Up