Xerces-C++  3.2.3
PSVIAttribute.hpp
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 /*
19  * $Id$
20  */
21 
22 #if !defined(XERCESC_INCLUDE_GUARD_PSVIATTRIBUTE_HPP)
23 #define XERCESC_INCLUDE_GUARD_PSVIATTRIBUTE_HPP
24 
27 #include <xercesc/validators/datatype/DatatypeValidator.hpp>
28 
30 
38 // forward declarations
40 
42 {
43 public:
44 
45  // Constructors and Destructor
46  // -----------------------------------------------------------------------
49 
56 
58 
61  ~PSVIAttribute();
63 
64  //---------------------
68 
75  XSAttributeDeclaration *getAttributeDeclaration();
76 
83 
94 
96 
97  //----------------------------------
101 
106  void reset(
107  const XMLCh * const valContext
109  , PSVIItem::ASSESSMENT_TYPE assessmentType
110  , XSSimpleTypeDefinition * validatingType
111  , XSSimpleTypeDefinition * memberType
112  , const XMLCh * const defaultValue
113  , const bool isSpecified
114  , XSAttributeDeclaration * attrDecl
115  , DatatypeValidator * dv
116  );
117 
123  void setValue(const XMLCh * const normalizedValue);
124 
129  void updateValidity(VALIDITY_STATE newValue);
130 
132 
133 private:
134 
135  // -----------------------------------------------------------------------
136  // Unimplemented constructors and operators
137  // -----------------------------------------------------------------------
139  PSVIAttribute & operator=(const PSVIAttribute &);
140 
141 
142  // -----------------------------------------------------------------------
143  // data members
144  // -----------------------------------------------------------------------
145  // fAttributeDecl
146  // attribute declaration component that validated this attribute
147  // fDV
148  // implementation-specific datatype validator used to validate this attribute
149  XSAttributeDeclaration * fAttributeDecl;
150  DatatypeValidator * fDV;
151 };
153 {
155 }
156 
158 {
159  return fAttributeDecl;
160 }
161 
163 {
164  return fType;
165 }
166 
168 {
169  return fMemberType;
170 }
171 
173 {
174  fValidityState = newValue;
175 }
176 
178 
179 #endif
PSVIItem::getMemberTypeDefinition
virtual XSSimpleTypeDefinition * getMemberTypeDefinition()=0
If and only if that type definition is a simple type definition with {variety} union,...
XERCES_CPP_NAMESPACE_BEGIN
#define XERCES_CPP_NAMESPACE_BEGIN
Definition: XercesDefs.hpp:112
PSVIAttribute::getTypeDefinition
XSTypeDefinition * getTypeDefinition()
An item isomorphic to the type definition used to validate this element.
Definition: PSVIAttribute.hpp:162
PSVIAttribute
Definition: PSVIAttribute.hpp:41
XSAttributeDeclaration
Definition: XSAttributeDeclaration.hpp:42
PSVIItem::ASSESSMENT_TYPE
ASSESSMENT_TYPE
Definition: PSVIItem.hpp:65
PSVIItem
Definition: PSVIItem.hpp:41
XERCES_CPP_NAMESPACE_END
#define XERCES_CPP_NAMESPACE_END
Definition: XercesDefs.hpp:113
PSVIItem::fMemoryManager
MemoryManager *const fMemoryManager
Definition: PSVIItem.hpp:258
PSVIAttribute::updateValidity
void updateValidity(VALIDITY_STATE newValue)
set VALIDITY_STATE to specified value; intended to be called by implementation.
Definition: PSVIAttribute.hpp:172
PSVIItem::getTypeDefinition
virtual XSTypeDefinition * getTypeDefinition()=0
An item isomorphic to the type definition used to validate this element.
PSVIAttribute::~PSVIAttribute
~PSVIAttribute()
Definition: PSVIAttribute.hpp:152
XMLCh
uint16_t XMLCh
Definition: Xerces_autoconf_config.hpp:120
XMLPlatformUtils::fgMemoryManager
static MemoryManager * fgMemoryManager
The configurable memory manager.
Definition: PlatformUtils.hpp:121
XSTypeDefinition
This class represents a complexType or simpleType definition.
Definition: XSTypeDefinition.hpp:39
PSVIItem.hpp
PSVIAttribute::getAttributeDeclaration
XSAttributeDeclaration * getAttributeDeclaration()
An item isomorphic to the attribute declaration used to validate this attribute.
Definition: PSVIAttribute.hpp:157
XSSimpleTypeDefinition.hpp
PSVIItem::fValidityState
VALIDITY_STATE fValidityState
Definition: PSVIItem.hpp:263
PSVIItem::fMemberType
XSSimpleTypeDefinition * fMemberType
Definition: PSVIItem.hpp:267
MemoryManager::deallocate
virtual void deallocate(void *p)=0
This method deallocates memory.
PSVIItem::fType
XSTypeDefinition * fType
Definition: PSVIItem.hpp:266
PSVIAttribute::getMemberTypeDefinition
XSSimpleTypeDefinition * getMemberTypeDefinition()
If and only if that type definition is a simple type definition with {variety} union,...
Definition: PSVIAttribute.hpp:167
MemoryManager
Configurable memory manager.
Definition: MemoryManager.hpp:39
XMLPARSER_EXPORT
#define XMLPARSER_EXPORT
Definition: XercesDefs.hpp:163
PSVIItem::reset
void reset(const XMLCh *const validationContext, const XMLCh *const normalizedValue, const VALIDITY_STATE validityState, const ASSESSMENT_TYPE assessmentType)
reset the object
PSVIItem::fCanonicalValue
XMLCh * fCanonicalValue
Definition: PSVIItem.hpp:262
PSVIItem::VALIDITY_STATE
VALIDITY_STATE
Definition: PSVIItem.hpp:45
XSSimpleTypeDefinition
Definition: XSSimpleTypeDefinition.hpp:43