summaryrefslogtreecommitdiff
path: root/libjava/org/w3c/dom/xpath
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /libjava/org/w3c/dom/xpath
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
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.
Diffstat (limited to 'libjava/org/w3c/dom/xpath')
-rw-r--r--libjava/org/w3c/dom/xpath/XPathEvaluator.h40
-rw-r--r--libjava/org/w3c/dom/xpath/XPathException.h38
-rw-r--r--libjava/org/w3c/dom/xpath/XPathExpression.h36
-rw-r--r--libjava/org/w3c/dom/xpath/XPathNSResolver.h35
-rw-r--r--libjava/org/w3c/dom/xpath/XPathNamespace.h79
-rw-r--r--libjava/org/w3c/dom/xpath/XPathResult.h54
6 files changed, 282 insertions, 0 deletions
diff --git a/libjava/org/w3c/dom/xpath/XPathEvaluator.h b/libjava/org/w3c/dom/xpath/XPathEvaluator.h
new file mode 100644
index 000000000..c8c52960f
--- /dev/null
+++ b/libjava/org/w3c/dom/xpath/XPathEvaluator.h
@@ -0,0 +1,40 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_w3c_dom_xpath_XPathEvaluator__
+#define __org_w3c_dom_xpath_XPathEvaluator__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace w3c
+ {
+ namespace dom
+ {
+ class Node;
+ namespace xpath
+ {
+ class XPathEvaluator;
+ class XPathExpression;
+ class XPathNSResolver;
+ }
+ }
+ }
+ }
+}
+
+class org::w3c::dom::xpath::XPathEvaluator : public ::java::lang::Object
+{
+
+public:
+ virtual ::org::w3c::dom::xpath::XPathExpression * createExpression(::java::lang::String *, ::org::w3c::dom::xpath::XPathNSResolver *) = 0;
+ virtual ::org::w3c::dom::xpath::XPathNSResolver * createNSResolver(::org::w3c::dom::Node *) = 0;
+ virtual ::java::lang::Object * evaluate(::java::lang::String *, ::org::w3c::dom::Node *, ::org::w3c::dom::xpath::XPathNSResolver *, jshort, ::java::lang::Object *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_w3c_dom_xpath_XPathEvaluator__
diff --git a/libjava/org/w3c/dom/xpath/XPathException.h b/libjava/org/w3c/dom/xpath/XPathException.h
new file mode 100644
index 000000000..2060b8583
--- /dev/null
+++ b/libjava/org/w3c/dom/xpath/XPathException.h
@@ -0,0 +1,38 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_w3c_dom_xpath_XPathException__
+#define __org_w3c_dom_xpath_XPathException__
+
+#pragma interface
+
+#include <java/lang/RuntimeException.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace w3c
+ {
+ namespace dom
+ {
+ namespace xpath
+ {
+ class XPathException;
+ }
+ }
+ }
+ }
+}
+
+class org::w3c::dom::xpath::XPathException : public ::java::lang::RuntimeException
+{
+
+public:
+ XPathException(jshort, ::java::lang::String *);
+ jshort __attribute__((aligned(__alignof__( ::java::lang::RuntimeException)))) code;
+ static const jshort INVALID_EXPRESSION_ERR = 51;
+ static const jshort TYPE_ERR = 52;
+ static ::java::lang::Class class$;
+};
+
+#endif // __org_w3c_dom_xpath_XPathException__
diff --git a/libjava/org/w3c/dom/xpath/XPathExpression.h b/libjava/org/w3c/dom/xpath/XPathExpression.h
new file mode 100644
index 000000000..22a7c268b
--- /dev/null
+++ b/libjava/org/w3c/dom/xpath/XPathExpression.h
@@ -0,0 +1,36 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_w3c_dom_xpath_XPathExpression__
+#define __org_w3c_dom_xpath_XPathExpression__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace w3c
+ {
+ namespace dom
+ {
+ class Node;
+ namespace xpath
+ {
+ class XPathExpression;
+ }
+ }
+ }
+ }
+}
+
+class org::w3c::dom::xpath::XPathExpression : public ::java::lang::Object
+{
+
+public:
+ virtual ::java::lang::Object * evaluate(::org::w3c::dom::Node *, jshort, ::java::lang::Object *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_w3c_dom_xpath_XPathExpression__
diff --git a/libjava/org/w3c/dom/xpath/XPathNSResolver.h b/libjava/org/w3c/dom/xpath/XPathNSResolver.h
new file mode 100644
index 000000000..ce05a57e5
--- /dev/null
+++ b/libjava/org/w3c/dom/xpath/XPathNSResolver.h
@@ -0,0 +1,35 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_w3c_dom_xpath_XPathNSResolver__
+#define __org_w3c_dom_xpath_XPathNSResolver__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace w3c
+ {
+ namespace dom
+ {
+ namespace xpath
+ {
+ class XPathNSResolver;
+ }
+ }
+ }
+ }
+}
+
+class org::w3c::dom::xpath::XPathNSResolver : public ::java::lang::Object
+{
+
+public:
+ virtual ::java::lang::String * lookupNamespaceURI(::java::lang::String *) = 0;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_w3c_dom_xpath_XPathNSResolver__
diff --git a/libjava/org/w3c/dom/xpath/XPathNamespace.h b/libjava/org/w3c/dom/xpath/XPathNamespace.h
new file mode 100644
index 000000000..816c751ad
--- /dev/null
+++ b/libjava/org/w3c/dom/xpath/XPathNamespace.h
@@ -0,0 +1,79 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_w3c_dom_xpath_XPathNamespace__
+#define __org_w3c_dom_xpath_XPathNamespace__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace w3c
+ {
+ namespace dom
+ {
+ class Document;
+ class Element;
+ class NamedNodeMap;
+ class Node;
+ class NodeList;
+ class UserDataHandler;
+ namespace xpath
+ {
+ class XPathNamespace;
+ }
+ }
+ }
+ }
+}
+
+class org::w3c::dom::xpath::XPathNamespace : public ::java::lang::Object
+{
+
+public:
+ virtual ::org::w3c::dom::Element * getOwnerElement() = 0;
+ virtual ::java::lang::String * getNodeName() = 0;
+ virtual ::java::lang::String * getNodeValue() = 0;
+ virtual void setNodeValue(::java::lang::String *) = 0;
+ virtual jshort getNodeType() = 0;
+ virtual ::org::w3c::dom::Node * getParentNode() = 0;
+ virtual ::org::w3c::dom::NodeList * getChildNodes() = 0;
+ virtual ::org::w3c::dom::Node * getFirstChild() = 0;
+ virtual ::org::w3c::dom::Node * getLastChild() = 0;
+ virtual ::org::w3c::dom::Node * getPreviousSibling() = 0;
+ virtual ::org::w3c::dom::Node * getNextSibling() = 0;
+ virtual ::org::w3c::dom::NamedNodeMap * getAttributes() = 0;
+ virtual ::org::w3c::dom::Document * getOwnerDocument() = 0;
+ virtual ::org::w3c::dom::Node * insertBefore(::org::w3c::dom::Node *, ::org::w3c::dom::Node *) = 0;
+ virtual ::org::w3c::dom::Node * replaceChild(::org::w3c::dom::Node *, ::org::w3c::dom::Node *) = 0;
+ virtual ::org::w3c::dom::Node * removeChild(::org::w3c::dom::Node *) = 0;
+ virtual ::org::w3c::dom::Node * appendChild(::org::w3c::dom::Node *) = 0;
+ virtual jboolean hasChildNodes() = 0;
+ virtual ::org::w3c::dom::Node * cloneNode(jboolean) = 0;
+ virtual void normalize() = 0;
+ virtual jboolean isSupported(::java::lang::String *, ::java::lang::String *) = 0;
+ virtual ::java::lang::String * getNamespaceURI() = 0;
+ virtual ::java::lang::String * getPrefix() = 0;
+ virtual void setPrefix(::java::lang::String *) = 0;
+ virtual ::java::lang::String * getLocalName() = 0;
+ virtual jboolean hasAttributes() = 0;
+ virtual ::java::lang::String * getBaseURI() = 0;
+ virtual jshort compareDocumentPosition(::org::w3c::dom::Node *) = 0;
+ virtual ::java::lang::String * getTextContent() = 0;
+ virtual void setTextContent(::java::lang::String *) = 0;
+ virtual jboolean isSameNode(::org::w3c::dom::Node *) = 0;
+ virtual ::java::lang::String * lookupPrefix(::java::lang::String *) = 0;
+ virtual jboolean isDefaultNamespace(::java::lang::String *) = 0;
+ virtual ::java::lang::String * lookupNamespaceURI(::java::lang::String *) = 0;
+ virtual jboolean isEqualNode(::org::w3c::dom::Node *) = 0;
+ virtual ::java::lang::Object * getFeature(::java::lang::String *, ::java::lang::String *) = 0;
+ virtual ::java::lang::Object * setUserData(::java::lang::String *, ::java::lang::Object *, ::org::w3c::dom::UserDataHandler *) = 0;
+ virtual ::java::lang::Object * getUserData(::java::lang::String *) = 0;
+ static const jshort XPATH_NAMESPACE_NODE = 13;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_w3c_dom_xpath_XPathNamespace__
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 <java/lang/Object.h>
+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__