00001 /* 00002 * Copyright (c) 2001-2006 00003 * DecisionSoft Limited. All rights reserved. 00004 * Copyright (c) 2004-2006 00005 * Progress Software Corporation. All rights reserved. 00006 * Copyright (c) 2004-2006 00007 * Oracle. All rights reserved. 00008 * 00009 * See the file LICENSE for redistribution information. 00010 * 00011 * $Id: ATAnyURIOrDerived.hpp,v 1.7 2006/11/01 16:37:14 jpcs Exp $ 00012 */ 00013 00014 #ifndef _ATANYURIORDERIVED_HPP 00015 #define _ATANYURIORDERIVED_HPP 00016 00017 #include <xercesc/util/XercesDefs.hpp> 00018 #include <xqilla/framework/XQillaExport.hpp> 00019 #include <xqilla/items/AnyAtomicType.hpp> 00020 00021 class DynamicContext; 00022 00023 class XQILLA_API ATAnyURIOrDerived : public AnyAtomicType 00024 { 00025 public: 00026 /* Get the name of the primitive type (basic type) of this type 00027 * (ie "decimal" for xs:decimal) */ 00028 virtual const XMLCh* getPrimitiveTypeName() const = 0; 00029 00030 /* Get the namespace URI for this type */ 00031 virtual const XMLCh* getTypeURI() const = 0; 00032 00033 /* Get the name of this type (ie "integer" for xs:integer) */ 00034 virtual const XMLCh* getTypeName() const = 0; 00035 00036 /* returns the XMLCh* (canonical) representation of this type */ 00037 virtual const XMLCh* asString(const DynamicContext* context) const = 0; 00038 00039 /* returns true if the two objects' URI are equal (string comparison) 00040 * false otherwise */ 00041 virtual bool equals(const AnyAtomicType::Ptr &target, const DynamicContext* context) const = 0; 00042 00043 virtual AnyAtomicType::AtomicObjectType getPrimitiveTypeIndex() const = 0; 00044 }; 00045 00046 #endif // _ATANYURIORDERIVED_HPP