00001 #ifndef DOMLocator_HEADER_GUARD_ 00002 #define DOMLocator_HEADER_GUARD_ 00003 00004 /* 00005 * Licensed to the Apache Software Foundation (ASF) under one or more 00006 * contributor license agreements. See the NOTICE file distributed with 00007 * this work for additional information regarding copyright ownership. 00008 * The ASF licenses this file to You under the Apache License, Version 2.0 00009 * (the "License"); you may not use this file except in compliance with 00010 * the License. You may obtain a copy of the License at 00011 * 00012 * http://www.apache.org/licenses/LICENSE-2.0 00013 * 00014 * Unless required by applicable law or agreed to in writing, software 00015 * distributed under the License is distributed on an "AS IS" BASIS, 00016 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00017 * See the License for the specific language governing permissions and 00018 * limitations under the License. 00019 */ 00020 00021 /* 00022 * $Id: DOMLocator.hpp 568078 2007-08-21 11:43:25Z amassari $ 00023 */ 00024 00025 #include <xercesc/util/XercesDefs.hpp> 00026 00027 XERCES_CPP_NAMESPACE_BEGIN 00028 00029 00030 class DOMNode; 00031 00032 00041 class CDOM_EXPORT DOMLocator 00042 { 00043 protected: 00044 // ----------------------------------------------------------------------- 00045 // Hidden constructors 00046 // ----------------------------------------------------------------------- 00049 DOMLocator() {}; 00051 00052 private: 00053 // ----------------------------------------------------------------------- 00054 // Unimplemented constructors and operators 00055 // ----------------------------------------------------------------------- 00058 DOMLocator(const DOMLocator &); 00059 DOMLocator & operator = (const DOMLocator &); 00061 00062 public: 00063 // ----------------------------------------------------------------------- 00064 // All constructors are hidden, just the destructor is available 00065 // ----------------------------------------------------------------------- 00072 virtual ~DOMLocator() {}; 00074 00075 // ----------------------------------------------------------------------- 00076 // Virtual DOMLocator interface 00077 // ----------------------------------------------------------------------- 00080 // ----------------------------------------------------------------------- 00081 // Getter methods 00082 // ----------------------------------------------------------------------- 00092 virtual XMLSSize_t getLineNumber() const = 0; 00093 00103 virtual XMLSSize_t getColumnNumber() const = 0; 00104 00116 virtual XMLSSize_t getOffset() const = 0; 00117 00127 virtual DOMNode* getErrorNode() const = 0; 00128 00138 virtual const XMLCh* getURI() const = 0; 00139 00140 // ----------------------------------------------------------------------- 00141 // Setter methods 00142 // ----------------------------------------------------------------------- 00153 virtual void setLineNumber(const XMLSSize_t lineNumber) = 0; 00154 00165 virtual void setColumnNumber(const XMLSSize_t columnNumber) = 0; 00166 00177 virtual void setOffset(const XMLSSize_t offset) = 0; 00178 00189 virtual void setErrorNode(DOMNode* const errorNode) = 0; 00190 00201 virtual void setURI(const XMLCh* const uri) = 0; 00202 00204 }; 00205 00206 XERCES_CPP_NAMESPACE_END 00207 00208 #endif