Xerces-C++  3.1.2
XSElementDeclaration.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: XSElementDeclaration.hpp 527149 2007-04-10 14:56:39Z amassari $
20  */
21 
22 #if !defined(XERCESC_INCLUDE_GUARD_XSELEMENTDECLARATION_HPP)
23 #define XERCESC_INCLUDE_GUARD_XSELEMENTDECLARATION_HPP
24 
27 
29 
37 // forward declarations
38 class XSAnnotation;
40 class XSIDCDefinition;
41 class XSTypeDefinition;
42 class SchemaElementDecl;
43 
45 {
46 public:
47 
48  // Constructors and Destructor
49  // -----------------------------------------------------------------------
52 
67  (
68  SchemaElementDecl* const schemaElementDecl
69  , XSTypeDefinition* const typeDefinition
70  , XSElementDeclaration* const substitutionGroupAffiliation
71  , XSAnnotation* const annot
72  , XSNamedMap<XSIDCDefinition>* const identityConstraints
73  , XSModel* const xsModel
75  , XSComplexTypeDefinition* const enclosingTypeDefinition = 0
77  );
78 
80 
85 
86  //---------------------
90 
95  const XMLCh* getName() const;
96 
101  const XMLCh* getNamespace();
102 
109 
111 
112  //---------------------
116 
121  XSTypeDefinition *getTypeDefinition() const;
122 
128  XSConstants::SCOPE getScope() const;
129 
134  XSComplexTypeDefinition *getEnclosingCTDefinition() const;
135 
139  XSConstants::VALUE_CONSTRAINT getConstraintType() const;
140 
145  const XMLCh *getConstraintValue();
146 
155  bool getNillable() const;
156 
160  XSNamedMap <XSIDCDefinition> *getIdentityConstraints();
161 
166  XSElementDeclaration *getSubstitutionGroupAffiliation() const;
167 
177  bool isSubstitutionGroupExclusion(XSConstants::DERIVATION_TYPE exclusion);
178 
185  short getSubstitutionGroupExclusions() const;
186 
197  bool isDisallowedSubstitution(XSConstants::DERIVATION_TYPE disallowed);
198 
206  short getDisallowedSubstitutions() const;
207 
211  bool getAbstract() const;
212 
216  XSAnnotation *getAnnotation() const;
217 
219 
220  //----------------------------------
224 
225  void setTypeDefinition(XSTypeDefinition* typeDefinition);
226 
228 private:
229 
230  void setEnclosingCTDefinition(XSComplexTypeDefinition* const toSet);
231  friend class XSObjectFactory;
232 
233  // -----------------------------------------------------------------------
234  // Unimplemented constructors and operators
235  // -----------------------------------------------------------------------
237  XSElementDeclaration & operator=(const XSElementDeclaration &);
238 
239 protected:
240 
241  // -----------------------------------------------------------------------
242  // data members
243  // -----------------------------------------------------------------------
247  SchemaElementDecl* fSchemaElementDecl;
253 };
254 
256 {
257  return fTypeDefinition;
258 }
259 
261 {
262  return fIdentityConstraints;
263 }
264 
266 {
268 }
269 
271 {
273 }
274 
276 {
278 }
279 
281 {
282  return fAnnotation;
283 }
284 
286 {
287  return fScope;
288 }
289 
291 {
293 }
294 
296 {
297  fTypeDefinition = typeDefinition;
298 }
299 
300 inline void XSElementDeclaration::setEnclosingCTDefinition(XSComplexTypeDefinition* const toSet)
301 {
302  fEnclosingTypeDefinition = toSet;
303 }
304 
306 
307 #endif
Definition: XSIDCDefinition.hpp:40
XSNamedMap< XSIDCDefinition > * fIdentityConstraints
Definition: XSElementDeclaration.hpp:252
XSConstants::SCOPE getScope() const
Optional.
Definition: XSElementDeclaration.hpp:285
Definition: XSComplexTypeDefinition.hpp:45
static MemoryManager * fgMemoryManager
The configurable memory manager.
Definition: PlatformUtils.hpp:121
short getDisallowedSubstitutions() const
[disallowed substitutions]: the returned value is a bit combination of the subset of { DERIVATION_SUB...
Definition: XSElementDeclaration.hpp:275
DERIVATION_TYPE
Definition: XSConstants.hpp:122
virtual XSNamespaceItem * getNamespaceItem()
A namespace schema information item corresponding to the target namespace of the component, if it's globally declared; or null otherwise.
virtual const XMLCh * getName() const
The name of type NCName of this declaration as defined in XML Namespaces.
XSElementDeclaration * fSubstitutionGroupAffiliation
Definition: XSElementDeclaration.hpp:250
short fSubstitutionGroupExclusions
Definition: XSElementDeclaration.hpp:245
XSTypeDefinition * getTypeDefinition() const
[type definition]: either a simple type definition or a complex type definition.
Definition: XSElementDeclaration.hpp:255
short getSubstitutionGroupExclusions() const
[substitution group exclusions]: the returned value is a bit combination of the subset of { DERIVATIO...
Definition: XSElementDeclaration.hpp:270
XSConstants::SCOPE fScope
Definition: XSElementDeclaration.hpp:246
Definition: XSNamespaceItem.hpp:53
XSTypeDefinition * fTypeDefinition
Definition: XSElementDeclaration.hpp:248
Definition: XSElementDeclaration.hpp:44
#define XMLPARSER_EXPORT
Definition: XercesDefs.hpp:163
XSComplexTypeDefinition * getEnclosingCTDefinition() const
The complex type definition for locally scoped declarations (see scope).
Definition: XSElementDeclaration.hpp:290
virtual const XMLCh * getNamespace()
The [target namespace] of this object, or null if it is unspecified.
Definition: XSModel.hpp:59
Definition: XSAnnotation.hpp:41
Configurable memory manager.
Definition: MemoryManager.hpp:39
The scope of a declaration within named model groups or attribute groups is absent.
Definition: XSConstants.hpp:159
#define XERCES_CPP_NAMESPACE_BEGIN
Definition: XercesDefs.hpp:112
wchar_t XMLCh
Definition: Xerces_autoconf_config.borland.hpp:92
SCOPE
Definition: XSConstants.hpp:152
XSAnnotation * fAnnotation
Definition: XSElementDeclaration.hpp:251
Definition: XSObject.hpp:42
#define XERCES_CPP_NAMESPACE_END
Definition: XercesDefs.hpp:113
XSElementDeclaration * getSubstitutionGroupAffiliation() const
Definition: XSElementDeclaration.hpp:265
void setTypeDefinition(XSTypeDefinition *typeDefinition)
methods needed by implementation
Definition: XSElementDeclaration.hpp:295
XSAnnotation * getAnnotation() const
Optional.
Definition: XSElementDeclaration.hpp:280
SchemaElementDecl * fSchemaElementDecl
Definition: XSElementDeclaration.hpp:247
short fDisallowedSubstitutions
Definition: XSElementDeclaration.hpp:244
XSNamedMap< XSIDCDefinition > * getIdentityConstraints()
identity-constraint definitions: a set of constraint definitions.
Definition: XSElementDeclaration.hpp:260
VALUE_CONSTRAINT
Definition: XSConstants.hpp:172
XSComplexTypeDefinition * fEnclosingTypeDefinition
Definition: XSElementDeclaration.hpp:249
This class represents a complexType or simpleType definition.
Definition: XSTypeDefinition.hpp:39