casa::QtDBusXML Class Reference

Subclass of QDomDocument that represents an XML scheme that is to be used with CASA's Qt dbus communication. More...

#include <QtDBusXML.h>

List of all members.

Public Member Functions

 QtDBusXML ()
 Non-Static Methods //.
 QtDBusXML (const QtDBusXML &copy)
 Copy constructor, see operator=().
virtual ~QtDBusXML ()
 Destructor.
String time () const
 Gets the value of the time tag, or an empty string if there is none.
QString qtime () const
void setTime ()
 Sets the time tag to the current time.
String from () const
 Gets/Sets the from tag.
QString qfrom () const
void setFrom (const String &value)
void setFrom (const QString &value)
String to () const
 Gets/Sets the to tag.
QString qto () const
void setTo (const String &value)
void setTo (const QString &value)
String methodName () const
 Gets/Sets the method name and whether the method call is asynchronous or not (default is false).
QString qmethodName () const
bool methodIsAsync () const
void setMethodName (const String &value, bool isAsync=false)
void setMethodName (const QString &value, bool isAsync=false)
void setMethodIsAsync (bool value)
String methodParamType (const String &paramName) const
 Returns the type of the method parameter with the given name, or an empty string if there is none.
QString qmethodParamType (const QString &paramName) const
bool methodParamIsBool (const String &paramName) const
 Returns whether the method parameter with the given name is the specified type or not.
bool methodParamIsInt (const String &paramName) const
bool methodParamIsUInt (const String &paramName) const
bool methodParamIsDouble (const String &paramName) const
bool methodParamIsString (const String &paramName) const
bool methodParamIsRecord (const String &paramName) const
bool methodParamIsArrayBool (const String &paramName) const
bool methodParamIsArrayInt (const String &paramName) const
bool methodParamBool (const String &paramName) const
 Returns the value of the method parameter with the given name as the specified type.
bool methodParamBool (const QString &paramName) const
int methodParamInt (const String &paramName) const
int methodParamInt (const QString &paramName) const
uInt methodParamUInt (const String &paramName) const
uInt methodParamUInt (const QString &paramName) const
double methodParamDouble (const String &paramName) const
double methodParamDouble (const QString &paramName) const
String methodParamString (const String &paramName) const
QString methodParamQString (const QString &paramName) const
Record methodParamRecord (const String &paramName) const
Record methodParamRecord (const QString &paramName) const
Array< Bool > methodParamArrayBool (const String &paramName) const
Array< Bool > methodParamArrayBool (const QString &paramName) const
Array< Int > methodParamArrayInt (const String &paramName) const
Array< Int > methodParamArrayInt (const QString &paramName) const
void setMethodParam (const String &paramName, bool value)
 Sets the parameter with the given name to the given value (and associated type).
void setMethodParam (const QString &paramName, bool value)
void setMethodParam (const String &paramName, int value)
void setMethodParam (const QString &paramName, int value)
void setMethodParam (const String &paramName, uInt value)
void setMethodParam (const QString &paramName, uInt value)
void setMethodParam (const String &paramName, double value)
void setMethodParam (const QString &paramName, double value)
void setMethodParam (const String &paramName, const String &value)
void setMethodParam (const QString &paramName, const QString &value)
void setMethodParam (const String &paramName, const Record &value)
void setMethodParam (const QString &paramName, const Record &value)
void setMethodParam (const String &paramName, const Array< bool > &value)
void setMethodParam (const QString &paramName, const Array< bool > &value)
void setMethodParam (const String &paramName, const Array< int > &value)
void setMethodParam (const QString &paramName, const Array< int > &value)
Record methodParams () const
 Gets/Sets all method parameter values as a Record.
void setMethodParams (const Record &parameters)
bool returnedSet () const
 Returns whether or not a returned value was set.
String returnedType () const
 Returns the type of the returned value, or empty string for none.
QString qreturnedType () const
bool returnedIsBool () const
 Returns whether the returned value is the specified type or not.
bool returnedIsInt () const
bool returnedIsUInt () const
bool returnedIsDouble () const
bool returnedIsString () const
bool returnedIsRecord () const
bool returnedIsArrayBool () const
bool returnedIsArrayInt () const
bool returnedBool () const
 Returns the returned value as the specified type.
int returnedInt () const
uInt returnedUInt () const
double returnedDouble () const
String returnedString () const
QString returnedQString () const
Record returnedRecord () const
Array< bool > returnedArrayBool () const
Array< int > returnedArrayInt () const
void setReturnedValue (bool value)
 Sets the returned value to the given value (and associated type).
void setReturnedValue (int value)
void setReturnedValue (uInt value)
void setReturnedValue (double value)
void setReturnedValue (const String &value)
void setReturnedValue (const QString &value)
void setReturnedValue (const Record &value)
void setReturnedValue (const Array< Bool > &value)
void setReturnedValue (const Array< Int > &value)
Record returnedValue () const
 Gets/Sets the returned value as a record.
void setReturnedValueRec (const Record &retValue)
String toXMLString () const
 Returns the whole XML as a string.
QString toXMLQString () const
bool fromXMLString (const String &value)
 Sets the whole XML as a string, and returns whether the operation.
bool fromXMLString (const QString &value)
QDomDocument & domDocument ()
 Returns the underlying QDomDocument.
const QDomDocument & domDocument () const
QtDBusXMLoperator= (const QtDBusXML &copy)
 Copy operator.

Static Public Member Functions

static QtDBusXML constructXML (const String &from="", const String &to="", const String &methodName="", bool methodIsAsync=false, const Record &methodParams=Record(), const Record &retValue=Record())
 Static Methods //.
static QtDBusXML constructXML (const QString &from="", const QString &to="", const QString &methodName="", bool methodIsAsync=false, const Record &methodParams=Record(), const Record &retValue=Record())
static QtDBusXML fromString (const String &xmlStr)
 Constructs and returns an XML message from the given XML string.
static QtDBusXML fromString (const QString &xmlStr)
static void extractXML (const QtDBusXML &xml, String *time=NULL, String *from=NULL, String *to=NULL, String *methodName=NULL, Record *methodParams=NULL, Record *retValue=NULL)
 Reads the values from the given XML message into the given parameters which are not NULL.
static void extractXML (const QtDBusXML &xml, QString *time=NULL, QString *from=NULL, QString *to=NULL, QString *methodName=NULL, Record *methodParams=NULL, Record *retValue=NULL)

Private Member Functions

void initialize ()
 Initialize object; meant to be called from constructor.
QString elemChildText (const QString &name) const
 Helper method for elemChildText().
void setElemChildText (const QString &name, const QString &value)
 Helper method for setElemChildText().
QDomElement methodParam (const QString &paramName, bool createIfAbsent=false) const
 Helper method that returns the element for the method parameter with the given name, or a null element if it is not.
void setMethodParam (const QString &name, const QString &type, const QString &value)
 Helper method for setting the method parameter values.
void setReturnedValue (const QString &type, const QString &value)
 Helper method for setting the returned value.

Static Private Member Functions

static bool qstringToBool (const QString &value)
 Static //.
static QString qstringFromBool (bool value)
static QDomElement elemChild (QDomDocument doc, const QString &name, bool createIfAbsent=false)
 Returns the child of the given element with the given tag name.
static QDomElement elemChild (QDomElement elem, const QString &name, bool createIfAbsent=false)
static QString elemChildText (QDomDocument doc, const QString &name, bool createIfAbsent=false)
 Returns the text value of the child of the given element with the given tag name.
static QString elemChildText (QDomElement elem, const QString &name, bool createIfAbsent=false)
static void setElemChildText (QDomDocument doc, const QString &name, const QString &value, bool createIfAbsent=false)
 Sets the text value of the child of the given element with the given tag name to the given value.
static void setElemChildText (QDomElement elem, const QString &name, const QString &value, bool createIfAbsent=false)
static void setElemText (QDomElement elem, const QString &text)
 Sets the text value of the given element (if it is not null) to the given text.
static Record elemToRecord (QDomElement value)
 Converts between a QDomElement and Record for values.
static void elemToRecord (Record &rec, QDomElement value)
static void elemFromRecord (QDomElement elem, const Record &value)
static Array< Bool > elemToArrayBool (QDomElement value)
 Converts between a QDomElement and Bool Array for values.
static void elemFromArrayBool (QDomElement elem, const Array< Bool > &value)
static Array< Int > elemToArrayInt (QDomElement value)
 Converts between a QDomElement and Int Array for values.
static void elemFromArrayInt (QDomElement elem, const Array< Int > &value)

Private Attributes

QDomDocument itsXML_
 XML document.

Detailed Description

Subclass of QDomDocument that represents an XML scheme that is to be used with CASA's Qt dbus communication.

<casa-dbus> <time>[TIMESTAMP]</time> <from>[NAME]</from> <to>[NAME]</to> <method name="[METHOD]" async="[ISASYNC]">

Parameters:
[NAME] [VALUE]

..\. </method> <returned type="[TYPE]">[VALUE]</returned> </casa-dbus> Currently supported types for parameters and returned values: bool, int, uInt, double, String, Record, Array<Bool> and Array<Int>, and Records with these types. For a discussion of what these fields mean, see the documentation for QtDBusXmlApp.

Definition at line 55 of file QtDBusXML.h.


Constructor & Destructor Documentation

casa::QtDBusXML::QtDBusXML (  ) 

Non-Static Methods //.

Constructor.

casa::QtDBusXML::QtDBusXML ( const QtDBusXML copy  ) 

Copy constructor, see operator=().

virtual casa::QtDBusXML::~QtDBusXML (  )  [virtual]

Destructor.


Member Function Documentation

static QtDBusXML casa::QtDBusXML::constructXML ( const QString &  from = "",
const QString &  to = "",
const QString &  methodName = "",
bool  methodIsAsync = false,
const Record &  methodParams = Record(),
const Record &  retValue = Record() 
) [static]
static QtDBusXML casa::QtDBusXML::constructXML ( const String &  from = "",
const String &  to = "",
const String &  methodName = "",
bool  methodIsAsync = false,
const Record &  methodParams = Record(),
const Record &  retValue = Record() 
) [inline, static]

Static Methods //.

Constructs and returns an XML message using the given parameters. Only uses the non-empty values. Sets the time to the current.

Definition at line 62 of file QtDBusXML.h.

References from(), methodIsAsync(), methodName(), methodParams(), and to().

const QDomDocument& casa::QtDBusXML::domDocument (  )  const
QDomDocument& casa::QtDBusXML::domDocument (  ) 

Returns the underlying QDomDocument.

static QDomElement casa::QtDBusXML::elemChild ( QDomElement  elem,
const QString &  name,
bool  createIfAbsent = false 
) [static, private]
static QDomElement casa::QtDBusXML::elemChild ( QDomDocument  doc,
const QString &  name,
bool  createIfAbsent = false 
) [inline, static, private]

Returns the child of the given element with the given tag name.

If createIfAbsent is true, then the element will be created and appended if it is not present; otherwise, the returned element will be null if not present. If the given element is null, a null element is returned.

Definition at line 365 of file QtDBusXML.h.

Referenced by elemChildText(), and setElemChildText().

static QString casa::QtDBusXML::elemChildText ( QDomElement  elem,
const QString &  name,
bool  createIfAbsent = false 
) [inline, static, private]

Definition at line 378 of file QtDBusXML.h.

References elemChild().

static QString casa::QtDBusXML::elemChildText ( QDomDocument  doc,
const QString &  name,
bool  createIfAbsent = false 
) [inline, static, private]

Returns the text value of the child of the given element with the given tag name.

See elemChild().

Definition at line 375 of file QtDBusXML.h.

References elemChildText().

QString casa::QtDBusXML::elemChildText ( const QString &  name  )  const [inline, private]

Helper method for elemChildText().

Definition at line 332 of file QtDBusXML.h.

References itsXML_.

Referenced by elemChildText().

static void casa::QtDBusXML::elemFromArrayBool ( QDomElement  elem,
const Array< Bool > &  value 
) [static, private]
static void casa::QtDBusXML::elemFromArrayInt ( QDomElement  elem,
const Array< Int > &  value 
) [static, private]
static void casa::QtDBusXML::elemFromRecord ( QDomElement  elem,
const Record &  value 
) [static, private]
static Array<Bool> casa::QtDBusXML::elemToArrayBool ( QDomElement  value  )  [static, private]

Converts between a QDomElement and Bool Array for values.

static Array<Int> casa::QtDBusXML::elemToArrayInt ( QDomElement  value  )  [static, private]

Converts between a QDomElement and Int Array for values.

static void casa::QtDBusXML::elemToRecord ( Record &  rec,
QDomElement  value 
) [static, private]
static Record casa::QtDBusXML::elemToRecord ( QDomElement  value  )  [static, private]

Converts between a QDomElement and Record for values.

static void casa::QtDBusXML::extractXML ( const QtDBusXML xml,
QString *  time = NULL,
QString *  from = NULL,
QString *  to = NULL,
QString *  methodName = NULL,
Record *  methodParams = NULL,
Record *  retValue = NULL 
) [static]
static void casa::QtDBusXML::extractXML ( const QtDBusXML xml,
String *  time = NULL,
String *  from = NULL,
String *  to = NULL,
String *  methodName = NULL,
Record *  methodParams = NULL,
Record *  retValue = NULL 
) [inline, static]

Reads the values from the given XML message into the given parameters which are not NULL.

Definition at line 85 of file QtDBusXML.h.

References from(), methodName(), methodParams(), qfrom(), qmethodName(), qtime(), qto(), time(), and to().

String casa::QtDBusXML::from (  )  const [inline]

Gets/Sets the from tag.

Definition at line 129 of file QtDBusXML.h.

References qfrom().

Referenced by constructXML(), and extractXML().

static QtDBusXML casa::QtDBusXML::fromString ( const QString &  xmlStr  )  [static]
static QtDBusXML casa::QtDBusXML::fromString ( const String &  xmlStr  )  [inline, static]

Constructs and returns an XML message from the given XML string.

Definition at line 77 of file QtDBusXML.h.

bool casa::QtDBusXML::fromXMLString ( const QString &  value  ) 
bool casa::QtDBusXML::fromXMLString ( const String &  value  )  [inline]

Sets the whole XML as a string, and returns whether the operation.

succeeded or not.

Definition at line 308 of file QtDBusXML.h.

void casa::QtDBusXML::initialize (  )  [private]

Initialize object; meant to be called from constructor.

bool casa::QtDBusXML::methodIsAsync (  )  const

Referenced by constructXML().

String casa::QtDBusXML::methodName (  )  const [inline]

Gets/Sets the method name and whether the method call is asynchronous or not (default is false).

Definition at line 146 of file QtDBusXML.h.

References qmethodName().

Referenced by constructXML(), and extractXML().

QDomElement casa::QtDBusXML::methodParam ( const QString &  paramName,
bool  createIfAbsent = false 
) const [private]

Helper method that returns the element for the method parameter with the given name, or a null element if it is not.

See elemChild().

Array<Bool> casa::QtDBusXML::methodParamArrayBool ( const QString &  paramName  )  const
Array<Bool> casa::QtDBusXML::methodParamArrayBool ( const String &  paramName  )  const [inline]

Definition at line 199 of file QtDBusXML.h.

Array<Int> casa::QtDBusXML::methodParamArrayInt ( const QString &  paramName  )  const
Array<Int> casa::QtDBusXML::methodParamArrayInt ( const String &  paramName  )  const [inline]

Definition at line 202 of file QtDBusXML.h.

bool casa::QtDBusXML::methodParamBool ( const QString &  paramName  )  const
bool casa::QtDBusXML::methodParamBool ( const String &  paramName  )  const [inline]

Returns the value of the method parameter with the given name as the specified type.

Is invalid if that parameter is not of the requested type. Note: the value can always be returned as a string representation.

Definition at line 181 of file QtDBusXML.h.

double casa::QtDBusXML::methodParamDouble ( const QString &  paramName  )  const
double casa::QtDBusXML::methodParamDouble ( const String &  paramName  )  const [inline]

Definition at line 190 of file QtDBusXML.h.

int casa::QtDBusXML::methodParamInt ( const QString &  paramName  )  const
int casa::QtDBusXML::methodParamInt ( const String &  paramName  )  const [inline]

Definition at line 184 of file QtDBusXML.h.

bool casa::QtDBusXML::methodParamIsArrayBool ( const String &  paramName  )  const
bool casa::QtDBusXML::methodParamIsArrayInt ( const String &  paramName  )  const
bool casa::QtDBusXML::methodParamIsBool ( const String &  paramName  )  const

Returns whether the method parameter with the given name is the specified type or not.

bool casa::QtDBusXML::methodParamIsDouble ( const String &  paramName  )  const
bool casa::QtDBusXML::methodParamIsInt ( const String &  paramName  )  const
bool casa::QtDBusXML::methodParamIsRecord ( const String &  paramName  )  const
bool casa::QtDBusXML::methodParamIsString ( const String &  paramName  )  const
bool casa::QtDBusXML::methodParamIsUInt ( const String &  paramName  )  const
QString casa::QtDBusXML::methodParamQString ( const QString &  paramName  )  const

Referenced by methodParamString().

Record casa::QtDBusXML::methodParamRecord ( const QString &  paramName  )  const
Record casa::QtDBusXML::methodParamRecord ( const String &  paramName  )  const [inline]

Definition at line 196 of file QtDBusXML.h.

Record casa::QtDBusXML::methodParams (  )  const

Gets/Sets all method parameter values as a Record.

Referenced by constructXML(), and extractXML().

String casa::QtDBusXML::methodParamString ( const String &  paramName  )  const [inline]

Definition at line 193 of file QtDBusXML.h.

References methodParamQString().

String casa::QtDBusXML::methodParamType ( const String &  paramName  )  const [inline]

Returns the type of the method parameter with the given name, or an empty string if there is none.

Definition at line 158 of file QtDBusXML.h.

References qmethodParamType().

uInt casa::QtDBusXML::methodParamUInt ( const QString &  paramName  )  const
uInt casa::QtDBusXML::methodParamUInt ( const String &  paramName  )  const [inline]

Definition at line 187 of file QtDBusXML.h.

QtDBusXML& casa::QtDBusXML::operator= ( const QtDBusXML copy  ) 

Copy operator.

QString casa::QtDBusXML::qfrom (  )  const

Referenced by extractXML(), and from().

QString casa::QtDBusXML::qmethodName (  )  const

Referenced by extractXML(), and methodName().

QString casa::QtDBusXML::qmethodParamType ( const QString &  paramName  )  const

Referenced by methodParamType().

QString casa::QtDBusXML::qreturnedType (  )  const

Referenced by returnedSet(), and returnedType().

static QString casa::QtDBusXML::qstringFromBool ( bool  value  )  [static, private]
static bool casa::QtDBusXML::qstringToBool ( const QString &  value  )  [static, private]

Static //.

Converts between QStrings and bools.

QString casa::QtDBusXML::qtime (  )  const

Referenced by extractXML(), and time().

QString casa::QtDBusXML::qto (  )  const

Referenced by extractXML(), and to().

Array<bool> casa::QtDBusXML::returnedArrayBool (  )  const
Array<int> casa::QtDBusXML::returnedArrayInt (  )  const
bool casa::QtDBusXML::returnedBool (  )  const

Returns the returned value as the specified type.

Is invalid if that parameter is not of the requested type. Note: the value can always be returned as a string representation.

double casa::QtDBusXML::returnedDouble (  )  const
int casa::QtDBusXML::returnedInt (  )  const
bool casa::QtDBusXML::returnedIsArrayBool (  )  const
bool casa::QtDBusXML::returnedIsArrayInt (  )  const
bool casa::QtDBusXML::returnedIsBool (  )  const

Returns whether the returned value is the specified type or not.

bool casa::QtDBusXML::returnedIsDouble (  )  const
bool casa::QtDBusXML::returnedIsInt (  )  const
bool casa::QtDBusXML::returnedIsRecord (  )  const
bool casa::QtDBusXML::returnedIsString (  )  const
bool casa::QtDBusXML::returnedIsUInt (  )  const
QString casa::QtDBusXML::returnedQString (  )  const

Referenced by returnedString().

Record casa::QtDBusXML::returnedRecord (  )  const
bool casa::QtDBusXML::returnedSet (  )  const [inline]

Returns whether or not a returned value was set.

Definition at line 243 of file QtDBusXML.h.

References qreturnedType().

String casa::QtDBusXML::returnedString (  )  const [inline]

Definition at line 271 of file QtDBusXML.h.

References returnedQString().

String casa::QtDBusXML::returnedType (  )  const [inline]

Returns the type of the returned value, or empty string for none.

Definition at line 247 of file QtDBusXML.h.

References qreturnedType().

uInt casa::QtDBusXML::returnedUInt (  )  const
Record casa::QtDBusXML::returnedValue (  )  const

Gets/Sets the returned value as a record.

ONLY the first field is used.

static void casa::QtDBusXML::setElemChildText ( QDomElement  elem,
const QString &  name,
const QString &  value,
bool  createIfAbsent = false 
) [inline, static, private]

Definition at line 390 of file QtDBusXML.h.

References elemChild(), and setElemText().

static void casa::QtDBusXML::setElemChildText ( QDomDocument  doc,
const QString &  name,
const QString &  value,
bool  createIfAbsent = false 
) [inline, static, private]

Sets the text value of the child of the given element with the given tag name to the given value.

See elemChild().

Definition at line 387 of file QtDBusXML.h.

References setElemChildText().

void casa::QtDBusXML::setElemChildText ( const QString &  name,
const QString &  value 
) [inline, private]

Helper method for setElemChildText().

Definition at line 336 of file QtDBusXML.h.

References itsXML_.

Referenced by setElemChildText().

static void casa::QtDBusXML::setElemText ( QDomElement  elem,
const QString &  text 
) [static, private]

Sets the text value of the given element (if it is not null) to the given text.

Referenced by setElemChildText().

void casa::QtDBusXML::setFrom ( const QString &  value  ) 
void casa::QtDBusXML::setFrom ( const String &  value  )  [inline]

Definition at line 131 of file QtDBusXML.h.

References setFrom().

Referenced by setFrom().

void casa::QtDBusXML::setMethodIsAsync ( bool  value  ) 
void casa::QtDBusXML::setMethodName ( const QString &  value,
bool  isAsync = false 
)
void casa::QtDBusXML::setMethodName ( const String &  value,
bool  isAsync = false 
) [inline]

Definition at line 149 of file QtDBusXML.h.

void casa::QtDBusXML::setMethodParam ( const QString &  name,
const QString &  type,
const QString &  value 
) [private]

Helper method for setting the method parameter values.

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
const Array< int > &  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
const Array< int > &  value 
) [inline]

Definition at line 231 of file QtDBusXML.h.

References setMethodParam().

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
const Array< bool > &  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
const Array< bool > &  value 
) [inline]

Definition at line 228 of file QtDBusXML.h.

References setMethodParam().

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
const Record &  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
const Record &  value 
) [inline]

Definition at line 225 of file QtDBusXML.h.

References setMethodParam().

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
const QString &  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
const String &  value 
) [inline]

Definition at line 222 of file QtDBusXML.h.

References setMethodParam().

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
double  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
double  value 
) [inline]

Definition at line 219 of file QtDBusXML.h.

References setMethodParam().

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
uInt  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
uInt  value 
) [inline]

Definition at line 216 of file QtDBusXML.h.

References setMethodParam().

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
int  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
int  value 
) [inline]

Definition at line 213 of file QtDBusXML.h.

References setMethodParam().

void casa::QtDBusXML::setMethodParam ( const QString &  paramName,
bool  value 
)
void casa::QtDBusXML::setMethodParam ( const String &  paramName,
bool  value 
) [inline]

Sets the parameter with the given name to the given value (and associated type).

Definition at line 210 of file QtDBusXML.h.

Referenced by setMethodParam().

void casa::QtDBusXML::setMethodParams ( const Record &  parameters  ) 
void casa::QtDBusXML::setReturnedValue ( const QString &  type,
const QString &  value 
) [private]

Helper method for setting the returned value.

void casa::QtDBusXML::setReturnedValue ( const Array< Int > &  value  ) 
void casa::QtDBusXML::setReturnedValue ( const Array< Bool > &  value  ) 
void casa::QtDBusXML::setReturnedValue ( const Record &  value  ) 
void casa::QtDBusXML::setReturnedValue ( const QString &  value  ) 
void casa::QtDBusXML::setReturnedValue ( const String &  value  )  [inline]

Definition at line 284 of file QtDBusXML.h.

References setReturnedValue().

void casa::QtDBusXML::setReturnedValue ( double  value  ) 
void casa::QtDBusXML::setReturnedValue ( uInt  value  ) 
void casa::QtDBusXML::setReturnedValue ( int  value  ) 
void casa::QtDBusXML::setReturnedValue ( bool  value  ) 

Sets the returned value to the given value (and associated type).

Referenced by setReturnedValue().

void casa::QtDBusXML::setReturnedValueRec ( const Record &  retValue  ) 
void casa::QtDBusXML::setTime (  ) 

Sets the time tag to the current time.

void casa::QtDBusXML::setTo ( const QString &  value  ) 
void casa::QtDBusXML::setTo ( const String &  value  )  [inline]

Definition at line 139 of file QtDBusXML.h.

References setTo().

Referenced by setTo().

String casa::QtDBusXML::time ( void   )  const [inline]

Gets the value of the time tag, or an empty string if there is none.

Definition at line 120 of file QtDBusXML.h.

References qtime().

Referenced by extractXML().

String casa::QtDBusXML::to (  )  const [inline]

Gets/Sets the to tag.

Definition at line 137 of file QtDBusXML.h.

References qto().

Referenced by constructXML(), and extractXML().

QString casa::QtDBusXML::toXMLQString (  )  const

Referenced by toXMLString().

String casa::QtDBusXML::toXMLString (  )  const [inline]

Returns the whole XML as a string.

Definition at line 301 of file QtDBusXML.h.

References toXMLQString().


Member Data Documentation

QDomDocument casa::QtDBusXML::itsXML_ [private]

XML document.

Definition at line 325 of file QtDBusXML.h.

Referenced by elemChildText(), and setElemChildText().


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

Generated on 31 Aug 2016 for casa by  doxygen 1.6.1