00001 #ifndef _IT_BUS_NAME_H_
00002 #define _IT_BUS_NAME_H_
00003
00004
00005
00006
00007 #include <it_cal/types.h>
00008 #include <it_bus/exception.h>
00009 #include <it_bus/api_defines.h>
00010 #include <it_bus/token.h>
00011
00012 namespace IT_Reflect
00013 {
00014 class Reflection;
00015 template <class T> class ValueRef;
00016 }
00017
00018 namespace IT_Bus
00019 {
00023 class IT_AFC_API Name : public Token
00024 {
00025 public:
00026 typedef IT_Reflect::ValueRef<IT_Bus::Name> IT_ReflectionType;
00027
00031 Name(
00032 ) throw(());
00033
00039 Name(
00040 const String& value
00041 ) throw((IT_Bus::Exception));
00042
00046 Name(
00047 const Name& copy
00048 ) throw(());
00049
00053 Name&
00054 operator=(
00055 const Name& rhs
00056 ) throw(());
00057
00063 static bool
00064 is_valid_name(
00065 const String& value
00066 ) throw(());
00067
00068
00069
00070 virtual AnyType&
00071 copy(
00072 const AnyType& copy
00073 );
00074
00080 virtual const QName&
00081 get_type() const;
00082
00083 virtual IT_Reflect::Reflection*
00084 get_reflection(
00085 ) throw((IT_Reflect::ReflectException));
00086
00087 virtual const IT_Reflect::Reflection*
00088 get_reflection(
00089 ) const throw((IT_Reflect::ReflectException));
00090
00091
00092
00093 static const QName&
00094 get_static_type();
00095
00096 protected:
00103 virtual void
00104 validate_string(
00105 const String& value
00106 ) throw((IT_Bus::Exception));
00107
00108 virtual bool
00109 allow_empty_string() const
00110 {
00111 return false;
00112 }
00113 };
00114 }
00115
00116 #endif