93 lines
7.9 KiB
HTML
93 lines
7.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
|
|
<title>XQilla DOM3 API Documentation</title>
|
|
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
|
<link href="tabs.css" rel="stylesheet" type="text/css">
|
|
</head><body>
|
|
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&type=2" border="0" alt="SourceForge.net Logo" /></a>
|
|
<!-- Generated by Doxygen 1.3.9.1 -->
|
|
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="namespacemembers.html">Namespace Members</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
|
|
<div class="nav">
|
|
<a class="el" href="dir_000006.html">include</a> / <a class="el" href="dir_000007.html">xqilla</a> / <a class="el" href="dir_000009.html">dom-api</a></div>
|
|
<h1>XPath2Result.hpp</h1><a href="XPath2Result_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*</span>
|
|
00002 <span class="comment"> * Copyright (c) 2001-2008</span>
|
|
00003 <span class="comment"> * DecisionSoft Limited. All rights reserved.</span>
|
|
00004 <span class="comment"> * Copyright (c) 2004-2008</span>
|
|
00005 <span class="comment"> * Oracle. All rights reserved.</span>
|
|
00006 <span class="comment"> *</span>
|
|
00007 <span class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</span>
|
|
00008 <span class="comment"> * you may not use this file except in compliance with the License.</span>
|
|
00009 <span class="comment"> * You may obtain a copy of the License at</span>
|
|
00010 <span class="comment"> *</span>
|
|
00011 <span class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</span>
|
|
00012 <span class="comment"> *</span>
|
|
00013 <span class="comment"> * Unless required by applicable law or agreed to in writing, software</span>
|
|
00014 <span class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</span>
|
|
00015 <span class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span>
|
|
00016 <span class="comment"> * See the License for the specific language governing permissions and</span>
|
|
00017 <span class="comment"> * limitations under the License.</span>
|
|
00018 <span class="comment"> *</span>
|
|
00019 <span class="comment"> * $Id: XPath2Result.hpp 552 2008-07-07 15:26:36Z jpcs $</span>
|
|
00020 <span class="comment"> */</span>
|
|
00021
|
|
00022 <span class="preprocessor">#ifndef __XPATH2RESULT_HPP</span>
|
|
00023 <span class="preprocessor"></span><span class="preprocessor">#define __XPATH2RESULT_HPP</span>
|
|
00024 <span class="preprocessor"></span>
|
|
00025 <span class="preprocessor">#include <xqilla/framework/XQillaExport.hpp></span>
|
|
00026
|
|
00027 <span class="preprocessor">#include <<a class="code" href="DOMNode_8hpp.html">xercesc/dom/DOMNode.hpp</a>></span>
|
|
00028 <span class="preprocessor">#include <<a class="code" href="DOMTypeInfo_8hpp.html">xercesc/dom/DOMTypeInfo.hpp</a>></span>
|
|
00029 <span class="preprocessor">#include <<a class="code" href="DOMException_8hpp.html">xercesc/dom/DOMException.hpp</a>></span>
|
|
00030 <span class="preprocessor">#include <<a class="code" href="DOMXPathException_8hpp.html">xercesc/dom/DOMXPathException.hpp</a>></span>
|
|
00031
|
|
<a name="l00039"></a><a class="code" href="classXPath2Result.html">00039</a> <span class="keyword">class </span>XQILLA_API XPath2Result
|
|
00040 {
|
|
00041 <span class="keyword">public</span>:
|
|
<a name="l00047"></a><a class="code" href="classXPath2Result.html#z1_0">00047</a> <span class="keyword">virtual</span> <a class="code" href="classXPath2Result.html#z1_0">~XPath2Result</a>() {};
|
|
00049
|
|
<a name="l00072"></a><a class="code" href="classXPath2Result.html#z3_0">00072</a> <span class="keyword">enum</span> <a class="code" href="classXPath2Result.html#z3_0">ResultType</a> {
|
|
00073 <a class="code" href="classXPath2Result.html#z3_0w0">FIRST_RESULT</a> = 100,
|
|
00074 <a class="code" href="classXPath2Result.html#z3_0w1">ITERATOR_RESULT</a> = 101,
|
|
00075 <a class="code" href="classXPath2Result.html#z3_0w2">SNAPSHOT_RESULT</a> = 102
|
|
00076 };
|
|
00078
|
|
00081
|
|
00087 <span class="keyword">virtual</span> ResultType <a class="code" href="classXPath2Result.html#z5_0">getResultType</a>() <span class="keyword">const </span>= 0;
|
|
00088
|
|
00093 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classXPath2Result.html#z5_1">isNode</a>() <span class="keyword">const </span>= 0;
|
|
00094
|
|
00099 <span class="keyword">virtual</span> <span class="keyword">const</span> XERCES_CPP_NAMESPACE_QUALIFIER DOMTypeInfo *<a class="code" href="classXPath2Result.html#z5_2">getTypeInfo</a>() <span class="keyword">const </span>= 0;
|
|
00100
|
|
00112 <span class="keyword">virtual</span> <span class="keywordtype">double</span> <a class="code" href="classXPath2Result.html#z5_3">getNumberValue</a>() <span class="keyword">const </span>= 0;
|
|
00113
|
|
00122 <span class="keyword">virtual</span> <span class="keywordtype">int</span> <a class="code" href="classXPath2Result.html#z5_4">getIntegerValue</a>() <span class="keyword">const </span>= 0;
|
|
00123
|
|
00132 <span class="keyword">virtual</span> <span class="keyword">const</span> XMLCh* <a class="code" href="classXPath2Result.html#z5_5">getStringValue</a>() <span class="keyword">const </span>= 0;
|
|
00133
|
|
00142 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classXPath2Result.html#z5_6">getBooleanValue</a>() <span class="keyword">const </span>= 0;
|
|
00143
|
|
00152 <span class="keyword">virtual</span> XERCES_CPP_NAMESPACE_QUALIFIER DOMNode* <a class="code" href="classXPath2Result.html#z5_7">getNodeValue</a>() <span class="keyword">const </span>= 0;
|
|
00153
|
|
00158 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classXPath2Result.html#z5_8">getInvalidIteratorState</a>() <span class="keyword">const </span>= 0;
|
|
00159
|
|
00167 <span class="keyword">virtual</span> size_t <a class="code" href="classXPath2Result.html#z5_9">getSnapshotLength</a>() <span class="keyword">const </span>= 0;
|
|
00168
|
|
00179 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classXPath2Result.html#z5_10">iterateNext</a>() = 0;
|
|
00180
|
|
00192 <span class="keyword">virtual</span> <span class="keywordtype">bool</span> <a class="code" href="classXPath2Result.html#z5_11">snapshotItem</a>(size_t) = 0;
|
|
00194
|
|
00204 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classXPath2Result.html#z7_0">release</a>() = 0;
|
|
00206
|
|
00207 <span class="keyword">protected</span>:
|
|
<a name="l00210"></a><a class="code" href="classXPath2Result.html#z9_0">00210</a> <a class="code" href="classXPath2Result.html#z9_0">XPath2Result</a>() {};
|
|
00212 <span class="keyword">private</span>:
|
|
00215 <a class="code" href="classXPath2Result.html#z9_0">XPath2Result</a>(<span class="keyword">const</span> XPath2Result &);
|
|
00216 XPath2Result &operator=(<span class="keyword">const</span> XPath2Result &);
|
|
00218 };
|
|
00219
|
|
00220 <span class="preprocessor">#endif</span>
|
|
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by
|
|
<a href="http://www.doxygen.org/index.html">
|
|
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
|
|
</body>
|
|
</html>
|