Main Page | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members

IT_Bus::Time Class Reference

#include <it_bus/time.h>

Inheritance diagram for IT_Bus::Time:

IT_Bus::AnySimpleType IT_Bus::AnyType List of all members.

Detailed Description

Base class for generated classes derived from xsd:time type definitions within a WSDL or XSD file.

Definition at line 27 of file time.h.

Public Member Functions

 Time (short wHour=0, short wMinute=0, short wSecond=0, short wMilliseconds=0) throw ((Exception))
 Constructor.
 Time (const char *value) throw ((Exception))
 Constructor.
 Time (const String &value) throw ((Exception))
 Constructor.
 Time (const Time &copy)
 Copy constructor.
virtual ~Time ()
 Destructor.
virtual AnyTypecopy (const AnyType &rhs)
 Return a reference to a copy of the Time value provided as the argument.
virtual void write_value (AnySimpleTypeWriter &writer) const throw ((IT_Bus::SerializationException))
 Write the instance value.
virtual void read_value (AnySimpleTypeReader &reader) throw ((IT_Bus::DeserializationException))
 Read the value into the instance.
virtual AnyType::Kind get_kind () const
 Returns the IT_Bus::AnyType::Kind for the type.
virtual const QNameget_type () const
 Returns the IT_Bus::AnyType::Kind for the type.
virtual IT_Reflect::Reflectionget_reflection () throw ((IT_Reflect::ReflectException))
 Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
virtual const IT_Reflect::Reflectionget_reflection () const throw ((IT_Reflect::ReflectException))
 Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.
String to_string () const
 Returns a string representation of the time.
void from_string (const String &str) throw ((Exception))
 Initializes this instance with the time corresponding to the string argument.
short getHour () const
 Returns a numeric value for the hour corresponding to the time this instance represents.
void setHour (short wHour) throw ((Exception))
 Sets the value for the hour to the numeric value supplied as an argument.
short getMinute () const
 Returns a numeric value for the minute corresponding to the time this instance represents.
void setMinute (short wMinute) throw ((Exception))
 Sets the value for the minute to the numeric value supplied as an argument.
short getSecond () const
 Returns a numeric value for the seconds corresponding to the time this instance represents.
void setSecond (short wSecond) throw ((Exception))
 Sets the value for the seconds to the numeric value supplied as an argument.
short getMilliseconds () const
 Returns a numeric value for the milliseconds corresponding to the time this instance represents.
void setMilliseconds (short wMilliseconds) throw ((Exception))
 Sets the value for the milliseconds to the numeric value supplied as an argument.
bool haveUTCTimeZoneOffset () const
 Returns a bool indicating whether the instance has the UTC time zone offset set.
void setLocalTimeZone ()
 Set the instance to the local time zone.
void setUTCTimeZoneOffset (short hour_offset, short minute_offset) throw ((Exception))
 Set the UTC time zone offset to the values supplied as arguments.
void getUTCTimeZoneOffset (short &hour_offset, short &minute_offset) const
 Obtain the UTC time zone offset values.
bool operator== (const Time &other) const
 Equality operator.
bool operator!= (const Time &other) const
 Inequality operator.
Timeoperator= (const Time &rhs)
 Assignment operator.
Timeoperator+= (const Duration &rhs) throw ((IT_Bus::Exception))
 Duration addition with assignment operator.
Timeoperator-= (const Duration &rhs) throw ((IT_Bus::Exception))
 Duration subtraction with assignment operator.


Constructor & Destructor Documentation

IT_Bus::Time::Time short  wHour = 0,
short  wMinute = 0,
short  wSecond = 0,
short  wMilliseconds = 0
throw ((Exception))
 

Constructor.

Parameters:
wHour the hour (0-23). The default is 0
wMinute the minute (0-59). The default is 0
wSecond the second (0-59). The default is 0
wMilliseconds the millisecond (0-999). The default is 0
Exceptions:
Exception 

IT_Bus::Time::Time const char *  value  )  throw ((Exception))
 

Constructor.

Parameters:
value string representation of a time instance
Exceptions:
Exception 

IT_Bus::Time::Time const String value  )  throw ((Exception))
 

Constructor.

Parameters:
value string representation of a time instance
Exceptions:
Exception 

IT_Bus::Time::Time const Time copy  ) 
 

Copy constructor.

virtual IT_Bus::Time::~Time  )  [virtual]
 

Destructor.


Member Function Documentation

virtual AnyType& IT_Bus::Time::copy const AnyType rhs  )  [virtual]
 

Return a reference to a copy of the Time value provided as the argument.

Returns:
Time instance.

Reimplemented from IT_Bus::AnyType.

void IT_Bus::Time::from_string const String str  )  throw ((Exception))
 

Initializes this instance with the time corresponding to the string argument.

Parameters:
String representation of the time.

virtual AnyType::Kind IT_Bus::Time::get_kind  )  const [virtual]
 

Returns the IT_Bus::AnyType::Kind for the type.

Returns:
AnyType::BUILT_IN.

Reimplemented from IT_Bus::AnySimpleType.

virtual const IT_Reflect::Reflection* IT_Bus::Time::get_reflection  )  const throw ((IT_Reflect::ReflectException)) [virtual]
 

Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.

Returns:
IT_Reflect::Reflection
Exceptions:
IT_Reflect::ReflectException 

Reimplemented from IT_Bus::AnyType.

virtual IT_Reflect::Reflection* IT_Bus::Time::get_reflection  )  throw ((IT_Reflect::ReflectException)) [virtual]
 

Return an instance of the IT_Reflect::Reflection type that encapsulates this instance.

Returns:
IT_Reflect::Reflection
Exceptions:
IT_Reflect::ReflectException 

Reimplemented from IT_Bus::AnyType.

virtual const QName& IT_Bus::Time::get_type  )  const [virtual]
 

Returns the IT_Bus::AnyType::Kind for the type.

Returns:
NT_SCHEMA_TIME.

Implements IT_Bus::AnyType.

short IT_Bus::Time::getHour  )  const
 

Returns a numeric value for the hour corresponding to the time this instance represents.

Returns:
short value for the hour.

short IT_Bus::Time::getMilliseconds  )  const
 

Returns a numeric value for the milliseconds corresponding to the time this instance represents.

Returns:
short value for the milliseconds.

short IT_Bus::Time::getMinute  )  const
 

Returns a numeric value for the minute corresponding to the time this instance represents.

Returns:
short value for the minute.

short IT_Bus::Time::getSecond  )  const
 

Returns a numeric value for the seconds corresponding to the time this instance represents.

Returns:
short value for the seconds.

void IT_Bus::Time::getUTCTimeZoneOffset short &  hour_offset,
short &  minute_offset
const
 

Obtain the UTC time zone offset values.

The values are returned through the method arguments.

bool IT_Bus::Time::haveUTCTimeZoneOffset  )  const
 

Returns a bool indicating whether the instance has the UTC time zone offset set.

Returns:
bool indicating whether the offset is set.

bool IT_Bus::Time::operator!= const Time other  )  const
 

Inequality operator.

Compares two times.

Time& IT_Bus::Time::operator+= const Duration rhs  )  throw ((IT_Bus::Exception))
 

Duration addition with assignment operator.

Time& IT_Bus::Time::operator-= const Duration rhs  )  throw ((IT_Bus::Exception))
 

Duration subtraction with assignment operator.

Time& IT_Bus::Time::operator= const Time rhs  ) 
 

Assignment operator.

bool IT_Bus::Time::operator== const Time other  )  const
 

Equality operator.

Compares two times.

virtual void IT_Bus::Time::read_value AnySimpleTypeReader &  reader  )  throw ((IT_Bus::DeserializationException)) [virtual]
 

Read the value into the instance.

Derived classes implement this method.

Implements IT_Bus::AnySimpleType.

void IT_Bus::Time::setHour short  wHour  )  throw ((Exception))
 

Sets the value for the hour to the numeric value supplied as an argument.

Parameters:
short representing the time.

void IT_Bus::Time::setLocalTimeZone  ) 
 

Set the instance to the local time zone.

void IT_Bus::Time::setMilliseconds short  wMilliseconds  )  throw ((Exception))
 

Sets the value for the milliseconds to the numeric value supplied as an argument.

Parameters:
short representing the milliseconds.

void IT_Bus::Time::setMinute short  wMinute  )  throw ((Exception))
 

Sets the value for the minute to the numeric value supplied as an argument.

Parameters:
short representing the minute.

void IT_Bus::Time::setSecond short  wSecond  )  throw ((Exception))
 

Sets the value for the seconds to the numeric value supplied as an argument.

Parameters:
short representing the seconds.

void IT_Bus::Time::setUTCTimeZoneOffset short  hour_offset,
short  minute_offset
throw ((Exception))
 

Set the UTC time zone offset to the values supplied as arguments.

Parameters:
short numeric value for the hour offset.
short numeric value for the minute offset.

String IT_Bus::Time::to_string  )  const
 

Returns a string representation of the time.

Returns:
String representation of the time.

virtual void IT_Bus::Time::write_value AnySimpleTypeWriter &  writer  )  const throw ((IT_Bus::SerializationException)) [virtual]
 

Write the instance value.

Derived classes implement this method.

Implements IT_Bus::AnySimpleType.


Generated on Wed Mar 22 12:23:44 2006 for Artix by  doxygen 1.3.9.1