#include <it_bus/token.h>
Inheritance diagram for IT_Bus::Token:
Definition at line 23 of file token.h.
Public Member Functions | |
Token () throw (()) | |
No argument constructor. | |
Token (const String &value) throw ((IT_Bus::Exception)) | |
Constructor. | |
Token (const Token ©) throw (()) | |
Copy constructor. | |
Token & | operator= (const Token &rhs) throw (()) |
Assignment operator. | |
virtual AnyType & | copy (const AnyType ©) |
Returns a reference to an AnyType that is a copy of the AnyType parameter. | |
virtual const QName & | get_type () const |
Returns the IT_Bus::QName for the type. | |
virtual IT_Reflect::Reflection * | get_reflection () throw ((IT_Reflect::ReflectException)) |
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance. | |
virtual const IT_Reflect::Reflection * | get_reflection () const throw ((IT_Reflect::ReflectException)) |
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance. | |
Static Public Member Functions | |
bool | is_valid_token (const String &value) throw (()) |
Confirms that supplied string does not include invalid characters. | |
Protected Member Functions | |
virtual void | validate_string (const String &value) throw ((IT_Bus::Exception)) |
Confirms that supplied string does not include invalid characters. |
|
No argument constructor.
|
|
Constructor.
|
|
Copy constructor.
|
|
Returns a reference to an AnyType that is a copy of the AnyType parameter. Derived classes override this method, providing an appropriate implementation. In this base class, this method is not supported; an exception is always thrown.
Reimplemented from IT_Bus::NormalizedString. Reimplemented in IT_Bus::ID, IT_Bus::Name, and IT_Bus::NCName. |
|
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
Reimplemented from IT_Bus::NormalizedString. Reimplemented in IT_Bus::ID, IT_Bus::Name, and IT_Bus::NCName. |
|
Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
Reimplemented from IT_Bus::NormalizedString. Reimplemented in IT_Bus::ID, IT_Bus::Name, and IT_Bus::NCName. |
|
Returns the IT_Bus::QName for the type. Derived subclasses implement this method and return their QName.
Reimplemented from IT_Bus::NormalizedString. Reimplemented in IT_Bus::ID, IT_Bus::Name, and IT_Bus::NCName. |
|
Confirms that supplied string does not include invalid characters.
|
|
Assignment operator.
|
|
Confirms that supplied string does not include invalid characters. This method simply invokes the is_valid_token() method.
Reimplemented from IT_Bus::NormalizedString. Reimplemented in IT_Bus::ID, IT_Bus::Name, and IT_Bus::NCName. |