Added Xerces-C++ 3.1.2
This commit is contained in:
@@ -0,0 +1,195 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/*
|
||||
* $Id: XSAnnotation.hpp 672273 2008-06-27 13:57:00Z borisk $
|
||||
*/
|
||||
|
||||
#if !defined(XERCESC_INCLUDE_GUARD_XSANNOTATION_HPP)
|
||||
#define XERCESC_INCLUDE_GUARD_XSANNOTATION_HPP
|
||||
|
||||
#include <xercesc/framework/psvi/XSObject.hpp>
|
||||
#include <xercesc/internal/XSerializable.hpp>
|
||||
|
||||
XERCES_CPP_NAMESPACE_BEGIN
|
||||
|
||||
/**
|
||||
* This class describes all properties of a Schema Annotation
|
||||
* component.
|
||||
* This is *always* owned by the validator /parser object from which
|
||||
* it is obtained.
|
||||
*/
|
||||
|
||||
// forward declarations
|
||||
class DOMNode;
|
||||
class ContentHandler;
|
||||
|
||||
class XMLPARSER_EXPORT XSAnnotation : public XSerializable, public XSObject
|
||||
{
|
||||
public:
|
||||
|
||||
// TargetType
|
||||
enum ANNOTATION_TARGET {
|
||||
/**
|
||||
* The object type is <code>org.w3c.dom.Element</code>.
|
||||
*/
|
||||
W3C_DOM_ELEMENT = 1,
|
||||
/**
|
||||
* The object type is <code>org.w3c.dom.Document</code>.
|
||||
*/
|
||||
W3C_DOM_DOCUMENT = 2
|
||||
};
|
||||
|
||||
// Constructors and Destructor
|
||||
// -----------------------------------------------------------------------
|
||||
/** @name Constructors */
|
||||
//@{
|
||||
|
||||
/**
|
||||
* The default constructor
|
||||
*
|
||||
* @param contents The string that is to be the content of this XSAnnotation
|
||||
* @param manager The configurable memory manager
|
||||
*/
|
||||
XSAnnotation
|
||||
(
|
||||
const XMLCh* const contents
|
||||
, MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
|
||||
);
|
||||
|
||||
//@};
|
||||
|
||||
/** @name Destructor */
|
||||
//@{
|
||||
~XSAnnotation();
|
||||
//@}
|
||||
|
||||
//---------------------
|
||||
/** @name XSAnnotation methods */
|
||||
|
||||
//@{
|
||||
|
||||
/**
|
||||
* Write contents of the annotation to the specified DOM object. In-scope
|
||||
* namespace declarations for <code>annotation</code> element are added as
|
||||
* attribute nodes of the serialized <code>annotation</code>.
|
||||
* @param node A target pointer to the annotation target object, i.e.
|
||||
* either <code>DOMDocument</code> or <code>DOMElement</code> cast as
|
||||
* <code>DOMNode</code>.
|
||||
* @param targetType A target type.
|
||||
*/
|
||||
|
||||
void writeAnnotation(DOMNode* node, ANNOTATION_TARGET targetType);
|
||||
|
||||
/**
|
||||
* Write contents of the annotation to the specified object.
|
||||
* The corresponding events for all in-scope namespace declarations are
|
||||
* sent via the specified document handler.
|
||||
* @param handler A target pointer to the annotation target object, i.e.
|
||||
* <code>ContentHandler</code>.
|
||||
*/
|
||||
void writeAnnotation(ContentHandler* handler);
|
||||
|
||||
/**
|
||||
* A text representation of annotation.
|
||||
*/
|
||||
const XMLCh *getAnnotationString() const;
|
||||
XMLCh *getAnnotationString();
|
||||
|
||||
//@}
|
||||
|
||||
//----------------------------------
|
||||
/** methods needed by implementation */
|
||||
//@{
|
||||
void setNext(XSAnnotation* const nextAnnotation);
|
||||
XSAnnotation* getNext();
|
||||
//@}
|
||||
|
||||
//-----------------------------
|
||||
/** Getter */
|
||||
//@{
|
||||
inline void getLineCol(XMLFileLoc& line, XMLFileLoc& col) const;
|
||||
inline const XMLCh* getSystemId() const;
|
||||
//@}
|
||||
|
||||
//-----------------------------
|
||||
/** Setter */
|
||||
//@{
|
||||
inline void setLineCol(XMLFileLoc line, XMLFileLoc col);
|
||||
void setSystemId(const XMLCh* const systemId);
|
||||
//@}
|
||||
|
||||
/***
|
||||
* Support for Serialization/De-serialization
|
||||
***/
|
||||
DECL_XSERIALIZABLE(XSAnnotation)
|
||||
XSAnnotation(MemoryManager* const manager);
|
||||
|
||||
private:
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// Unimplemented constructors and operators
|
||||
// -----------------------------------------------------------------------
|
||||
XSAnnotation(const XSAnnotation&);
|
||||
XSAnnotation & operator=(const XSAnnotation &);
|
||||
|
||||
protected:
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// data members
|
||||
// -----------------------------------------------------------------------
|
||||
XMLCh* fContents;
|
||||
XSAnnotation* fNext;
|
||||
|
||||
private:
|
||||
|
||||
XMLCh* fSystemId;
|
||||
XMLFileLoc fLine;
|
||||
XMLFileLoc fCol;
|
||||
|
||||
};
|
||||
|
||||
inline const XMLCh *XSAnnotation::getAnnotationString() const
|
||||
{
|
||||
return fContents;
|
||||
}
|
||||
|
||||
inline XMLCh *XSAnnotation::getAnnotationString()
|
||||
{
|
||||
return fContents;
|
||||
}
|
||||
|
||||
inline void XSAnnotation::getLineCol(XMLFileLoc& line, XMLFileLoc& col) const
|
||||
{
|
||||
line = fLine;
|
||||
col = fCol;
|
||||
}
|
||||
|
||||
inline const XMLCh* XSAnnotation::getSystemId() const
|
||||
{
|
||||
return fSystemId;
|
||||
}
|
||||
|
||||
inline void XSAnnotation::setLineCol(XMLFileLoc line, XMLFileLoc col)
|
||||
{
|
||||
fLine = line;
|
||||
fCol = col;
|
||||
}
|
||||
|
||||
XERCES_CPP_NAMESPACE_END
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user