summaryrefslogtreecommitdiff
path: root/libjava/org/w3c/dom/xpath/XPathResult.h
blob: 7922d250fff95f358f9339d7d2938c0752bb7d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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__