From 554fd8c5195424bdbcabf5de30fdc183aba391bd Mon Sep 17 00:00:00 2001 From: upstream source tree Date: Sun, 15 Mar 2015 20:14:05 -0400 Subject: obtained gcc-4.6.4.tar.bz2 from upstream website; verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository. --- libjava/org/w3c/dom/xpath/XPathResult.h | 54 +++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 libjava/org/w3c/dom/xpath/XPathResult.h (limited to 'libjava/org/w3c/dom/xpath/XPathResult.h') diff --git a/libjava/org/w3c/dom/xpath/XPathResult.h b/libjava/org/w3c/dom/xpath/XPathResult.h new file mode 100644 index 000000000..7922d250f --- /dev/null +++ b/libjava/org/w3c/dom/xpath/XPathResult.h @@ -0,0 +1,54 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __org_w3c_dom_xpath_XPathResult__ +#define __org_w3c_dom_xpath_XPathResult__ + +#pragma interface + +#include +extern "Java" +{ + namespace org + { + namespace w3c + { + namespace dom + { + class Node; + namespace xpath + { + class XPathResult; + } + } + } + } +} + +class org::w3c::dom::xpath::XPathResult : public ::java::lang::Object +{ + +public: + virtual jshort getResultType() = 0; + virtual jdouble getNumberValue() = 0; + virtual ::java::lang::String * getStringValue() = 0; + virtual jboolean getBooleanValue() = 0; + virtual ::org::w3c::dom::Node * getSingleNodeValue() = 0; + virtual jboolean getInvalidIteratorState() = 0; + virtual jint getSnapshotLength() = 0; + virtual ::org::w3c::dom::Node * iterateNext() = 0; + virtual ::org::w3c::dom::Node * snapshotItem(jint) = 0; + static const jshort ANY_TYPE = 0; + static const jshort NUMBER_TYPE = 1; + static const jshort STRING_TYPE = 2; + static const jshort BOOLEAN_TYPE = 3; + static const jshort UNORDERED_NODE_ITERATOR_TYPE = 4; + static const jshort ORDERED_NODE_ITERATOR_TYPE = 5; + static const jshort UNORDERED_NODE_SNAPSHOT_TYPE = 6; + static const jshort ORDERED_NODE_SNAPSHOT_TYPE = 7; + static const jshort ANY_UNORDERED_NODE_TYPE = 8; + static const jshort FIRST_ORDERED_NODE_TYPE = 9; + static ::java::lang::Class class$; +} __attribute__ ((java_interface)); + +#endif // __org_w3c_dom_xpath_XPathResult__ -- cgit v1.2.3