00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 #if !defined(PSVIELEMENT_HPP)
00045 #define PSVIELEMENT_HPP
00046
00047 #include <xercesc/framework/psvi/PSVIItem.hpp>
00048
00049 XERCES_CPP_NAMESPACE_BEGIN
00050
00058
00059 class XSElementDeclaration;
00060 class XSNotationDeclaration;
00061 class XSModel;
00062
00063 class PSVIElement : public PSVIItem
00064 {
00065 public:
00066
00067
00068
00071
00077 PSVIElement( MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00078
00080
00083 ~PSVIElement();
00085
00086
00090
00097 XSElementDeclaration *getElementDeclaration();
00098
00104 XSNotationDeclaration *getNotationDeclaration();
00105
00112 XSModel *getSchemaInformation();
00113
00119 XSTypeDefinition *getTypeDefinition();
00120
00130 XSSimpleTypeDefinition *getMemberTypeDefinition();
00131
00133
00134
00138 void reset
00139 (
00140 const VALIDITY_STATE validityState
00141 , const ASSESSMENT_TYPE assessmentType
00142 , const XMLCh* const validationContext
00143 , bool isSpecified
00144 , XSElementDeclaration* const elemDecl
00145 , XSTypeDefinition* const typeDef
00146 , XSSimpleTypeDefinition* const memberType
00147 , XSModel* const schemaInfo
00148 , const XMLCh* const defaultValue
00149 , const XMLCh* const normalizedValue = 0
00150 , XMLCh* const canonicalValue = 0
00151 , XSNotationDeclaration* const notationDecl = 0
00152 );
00153
00155
00156 private:
00157
00158
00159
00160
00161 PSVIElement(const PSVIElement&);
00162 PSVIElement & operator=(const PSVIElement &);
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174 XSElementDeclaration *fElementDecl;
00175 XSNotationDeclaration *fNotationDecl;
00176 XSModel *fSchemaInfo;
00177 };
00178
00179 inline XSElementDeclaration *PSVIElement::getElementDeclaration()
00180 {
00181 return fElementDecl;
00182 }
00183
00184 inline XSNotationDeclaration* PSVIElement::getNotationDeclaration()
00185 {
00186 return fNotationDecl;
00187 }
00188
00189 inline XSModel* PSVIElement::getSchemaInformation()
00190 {
00191 return fSchemaInfo;
00192 }
00193
00194 XERCES_CPP_NAMESPACE_END
00195
00196 #endif