summaryrefslogtreecommitdiff
path: root/libjava/gnu/xml/xpath/Selector.h
blob: 9dcd37a4e3f155cf70071e4adaa0878242ccc501 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __gnu_xml_xpath_Selector__
#define __gnu_xml_xpath_Selector__

#pragma interface

#include <gnu/xml/xpath/Path.h>
#include <gcj/array.h>

extern "Java"
{
  namespace gnu
  {
    namespace xml
    {
      namespace xpath
      {
          class Expr;
          class Selector;
          class Test;
      }
    }
  }
  namespace javax
  {
    namespace xml
    {
      namespace namespace$
      {
          class QName;
      }
    }
  }
  namespace org
  {
    namespace w3c
    {
      namespace dom
      {
          class Node;
      }
    }
  }
}

class gnu::xml::xpath::Selector : public ::gnu::xml::xpath::Path
{

public:
  Selector(jint, ::java::util::List *);
  JArray< ::gnu::xml::xpath::Test * > * getTests();
  jboolean matches(::org::w3c::dom::Node *);
public: // actually package-private
  jboolean matches(::org::w3c::dom::Node *, jint, jint);
private:
  jint getContextPosition(::org::w3c::dom::Node *);
  jint getContextSize(::org::w3c::dom::Node *);
public:
  ::java::lang::Object * evaluate(::org::w3c::dom::Node *, jint, jint);
public: // actually package-private
  ::java::util::Collection * evaluate(::org::w3c::dom::Node *, ::java::util::Collection *);
  ::java::util::List * filterCandidates(::java::util::List *, jboolean);
  void addCandidates(::org::w3c::dom::Node *, ::java::util::Collection *);
  void addChildNodes(::org::w3c::dom::Node *, ::java::util::Collection *, jboolean);
  void addParentNode(::org::w3c::dom::Node *, ::java::util::Collection *, jboolean);
  void addFollowingNodes(::org::w3c::dom::Node *, ::java::util::Collection *, jboolean);
  void addPrecedingNodes(::org::w3c::dom::Node *, ::java::util::Collection *, jboolean);
  void addAttributes(::org::w3c::dom::Node *, ::java::util::Collection *);
  void addNamespaceAttributes(::org::w3c::dom::Node *, ::java::util::Collection *);
  jboolean isNamespaceAttribute(::org::w3c::dom::Node *);
public:
  ::gnu::xml::xpath::Expr * clone(::java::lang::Object *);
  jboolean references(::javax::xml::namespace$::QName *);
  ::java::lang::String * toString();
  static const jint ANCESTOR = 0;
  static const jint ANCESTOR_OR_SELF = 1;
  static const jint ATTRIBUTE = 2;
  static const jint CHILD = 3;
  static const jint DESCENDANT = 4;
  static const jint DESCENDANT_OR_SELF = 5;
  static const jint FOLLOWING = 6;
  static const jint FOLLOWING_SIBLING = 7;
  static const jint NAMESPACE = 8;
  static const jint PARENT = 9;
  static const jint PRECEDING = 10;
  static const jint PRECEDING_SIBLING = 11;
  static const jint SELF = 12;
public: // actually package-private
  jint __attribute__((aligned(__alignof__( ::gnu::xml::xpath::Path)))) axis;
  JArray< ::gnu::xml::xpath::Test * > * tests;
public:
  static ::java::lang::Class class$;
};

#endif // __gnu_xml_xpath_Selector__