Xalan-C++ API Documentation

The Xalan C++ XSLT Processor Version 1.10

Public Member Functions | Protected Member Functions | List of all members
XToken Class Reference
Inheritance diagram for XToken:
XObject XalanReferenceCountedObject

Public Member Functions

 XToken ()
 XToken (const XalanDOMString &theString, MemoryManagerType &theManager)
 Create an XToken for string in the token queue.
 XToken (double theNumber, const XalanDOMString &theString)
 Create an XToken for number in the token queue.
 XToken (const XToken &theSource)
virtual ~XToken ()
virtual const XalanDOMStringgetTypeString () const
 Given a request type, return the equivalent string.
virtual double num () const
 Cast result object to a number.
virtual bool boolean () const
 Cast result object to a boolean.
virtual const XalanDOMStringstr () const
 Cast result object to a string.
virtual void str (FormatterListener &formatterListener, MemberFunctionPtr function) const
 Send the string value to a FormatterListener instance.
virtual void str (XalanDOMString &theBuffer) const
 Append the string value directly a string.
virtual double stringLength () const
 Get the length of the string value of the instance.
virtual void ProcessXObjectTypeCallback (XObjectTypeCallback &theCallbackObject)
 Process a callback request for preferred type information.
virtual void ProcessXObjectTypeCallback (XObjectTypeCallback &theCallbackObject) const
 Process a callback request for preferred type information.
XTokenoperator= (const XToken &theRHS)
void set (const XalanDOMString &theString, MemoryManagerType &theManager)
 Set the instance as a string in the token queue.
void set (double theNumber, const XalanDOMString &theString, MemoryManagerType &theManager)
 Set the instance as a number in the token queue.
- Public Member Functions inherited from XObject
 XObject (eObjectType theObjectType)
 Create an XObject.
 XObject (const XObject &source)
virtual const
XalanDocumentFragment
rtree () const
 Cast result object to a result tree fragment.
virtual const NodeRefListBasenodeset () const
 Cast result object to a nodelist.
bool equals (const XObject &theRHS, XPathExecutionContext &executionContext) const
 Tell if two objects are functionally equal.
bool notEquals (const XObject &theRHS, XPathExecutionContext &executionContext) const
 Tell if two objects are functionally not equal.
bool lessThan (const XObject &theRHS, XPathExecutionContext &executionContext) const
 Tell if one object is less than the other.
bool lessThanOrEquals (const XObject &theRHS, XPathExecutionContext &executionContext) const
 Tell if one object is less than or equal the other.
bool greaterThan (const XObject &theRHS, XPathExecutionContext &executionContext) const
 Tell if one object is greater than the other.
bool greaterThanOrEquals (const XObject &theRHS, XPathExecutionContext &executionContext) const
 Tell if one object is greater than or equal the other.
eObjectType getType () const
 Tell what kind of class this is.
void setFactory (XObjectFactory *theFactory)

Protected Member Functions

virtual void referenced ()
virtual void dereferenced ()
- Protected Member Functions inherited from XObject
virtual eObjectType getRealType () const
 Tell what kind of class this is.
virtual ~XObject ()

Additional Inherited Members

- Public Types inherited from XObject
enum  eObjectType {
  eTypeNull = 0, eTypeUnknown = 1, eTypeBoolean = 2, eTypeNumber = 3,
  eTypeString = 4, eTypeNodeSet = 5, eTypeResultTreeFrag = 6, eTypeUserDefined = 7,
  eTypeStringReference = 8, eTypeStringAdapter = 9, eTypeStringCached = 10, eTypeXTokenNumberAdapter = 11,
  eTypeXTokenStringAdapter = 12, eTypeNodeSetNodeProxy = 13, eUnknown
}
 Enumeration of possible object types. More...
typedef void(FormatterListener::* MemberFunctionPtr )(const XMLCh *const, const unsigned int)
- Static Public Member Functions inherited from XObject
static void initialize (MemoryManagerType &theManager)
 Perform static initialization.
static void terminate ()
 Perform static shut down.
static bool boolean (double theNumber)
 Static conversion function.
static bool boolean (const XalanDOMString &theString)
 Static conversion function.
static bool boolean (const NodeRefListBase &theNodeList)
 Static conversion function.
static const XalanDOMStringstring (bool theBool)
 Static conversion function.
static void string (bool theBool, FormatterListener &formatterListener, MemberFunctionPtr function)
static void string (double theNumber, XalanDOMString &theString)
 Static conversion function.
static void string (double theNumber, FormatterListener &formatterListener, MemberFunctionPtr function)
static void string (const XalanNode &theNode, XalanDOMString &theString)
 Static conversion function.
static void string (const XalanNode &theNode, FormatterListener &formatterListener, MemberFunctionPtr function)
static void string (const NodeRefListBase &theNodeList, XalanDOMString &theString)
 Static conversion function.
static void string (const NodeRefListBase &theNodeList, FormatterListener &formatterListener, MemberFunctionPtr function)
static double number (bool theBoolean)
 Static conversion function.
static double number (const XalanDOMString &theString, MemoryManagerType &theManager)
static double number (XPathExecutionContext &executionContext, const NodeRefListBase &theNodeList)
 Static conversion function.
static double number (XPathExecutionContext &executionContext, const XalanNode &theNode)
 Static conversion function.
- Static Protected Member Functions inherited from XalanReferenceCountedObject
static void addReference (XalanReferenceCountedObject *theInstance)
 Increment reference count.
static void removeReference (XalanReferenceCountedObject *theInstance)
 Decrement reference count.
- Static Protected Attributes inherited from XObject
static const XalanDOMString s_emptyString
static const XalanDOMStrings_booleanString
static const XalanDOMStrings_falseString
static const XalanDOMStrings_nodesetString
static const XalanDOMStrings_numberString
static const XalanDOMStrings_resultTreeFragmentString
static const XalanDOMStrings_stringString
static const XalanDOMStrings_trueString

Constructor & Destructor Documentation

XToken::XToken ( )
XToken::XToken ( const XalanDOMString theString,
MemoryManagerType theManager 
)
explicit

Create an XToken for string in the token queue.

Parameters
theStringThe string data for the token. The instance will keep a point to this string, so it must be persistent.
XToken::XToken ( double  theNumber,
const XalanDOMString theString 
)

Create an XToken for number in the token queue.

Parameters
theNumberThe numeric data for the token. This must be consistent with the lexical value in theString.
theStringThe string data for the token. The instance will keep a point to this string, so it must be persistent.
XToken::XToken ( const XToken theSource)
virtual XToken::~XToken ( )
virtual

Member Function Documentation

virtual bool XToken::boolean ( ) const
virtual

Cast result object to a boolean.

Returns
boolean value

Reimplemented from XObject.

virtual void XToken::dereferenced ( )
protectedvirtual

Reimplemented from XObject.

virtual const XalanDOMString& XToken::getTypeString ( ) const
virtual

Given a request type, return the equivalent string.

For diagnostic purposes.

Returns
string for type

Implements XObject.

virtual double XToken::num ( ) const
virtual

Cast result object to a number.

Returns
numeric value

Reimplemented from XObject.

XToken& XToken::operator= ( const XToken theRHS)
virtual void XToken::ProcessXObjectTypeCallback ( XObjectTypeCallback theCallbackObject)
virtual

Process a callback request for preferred type information.

Parameters
theCallbackObjectobject to call back

Implements XObject.

virtual void XToken::ProcessXObjectTypeCallback ( XObjectTypeCallback theCallbackObject) const
virtual

Process a callback request for preferred type information.

Parameters
theCallbackObjectobject to call back

Implements XObject.

virtual void XToken::referenced ( )
protectedvirtual

Reimplemented from XObject.

void XToken::set ( const XalanDOMString theString,
MemoryManagerType theManager 
)

Set the instance as a string in the token queue.

Parameters
theStringThe string data for the token. XToken will keep a point to this string, so it must be persistent.
void XToken::set ( double  theNumber,
const XalanDOMString theString,
MemoryManagerType theManager 
)

Set the instance as a number in the token queue.

Parameters
theNumberThe numeric data for the token. This must be consistent with the lexical value in theString.
theStringThe string data for the token. XToken will keep a point to this string, so it must be persistent.
virtual const XalanDOMString& XToken::str ( ) const
virtual

Cast result object to a string.

Returns
string value

Reimplemented from XObject.

virtual void XToken::str ( FormatterListener formatterListener,
MemberFunctionPtr  function 
) const
virtual

Send the string value to a FormatterListener instance.

Parameters
formatterListenerThe FormatterListener instance
functionA pointer to the member function of FormatterListener to call

Implements XObject.

virtual void XToken::str ( XalanDOMString theBuffer) const
virtual

Append the string value directly a string.

Parameters
theBufferThe buffer for the data

Reimplemented from XObject.

virtual double XToken::stringLength ( ) const
virtual

Get the length of the string value of the instance.

Returns
The length of the string value

Implements XObject.


The documentation for this class was generated from the following file:

Interpreting class diagrams

Doxygen and GraphViz are used to generate this API documentation from the Xalan-C header files.

dot

Xalan-C++ XSLT Processor Version 1.10
Copyright © 1999-2004 The Apache Software Foundation. All Rights Reserved.

Apache Logo