⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xsannotation.hpp

📁 经典开源游戏glest的源代码
💻 HPP
字号:
/* * 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 568078 2007-08-21 11:43:25Z amassari $ */#if !defined(XSANNOTATION_HPP)#define 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 declarationsclass 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(int& line, int& col)  const;    inline const XMLCh*   getSystemId()                    const;        //@}    //-----------------------------    /** Setter */    //@{    inline void           setLineCol(int line, int 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;    int           fLine;    int           fCol;};inline const XMLCh *XSAnnotation::getAnnotationString() const{    return fContents;}inline XMLCh *XSAnnotation::getAnnotationString(){    return fContents;}inline void XSAnnotation::getLineCol(int& line, int& col) const{    line = fLine;    col  = fCol;}inline const XMLCh* XSAnnotation::getSystemId() const{    return fSystemId;}inline void XSAnnotation::setLineCol(int line, int col){    fLine = line;    fCol  = col;}XERCES_CPP_NAMESPACE_END#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -