OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface XPathResult { | 7 interface XPathResult { |
8 | 8 |
9 static final int ANY_TYPE = 0; | 9 static final int ANY_TYPE = 0; |
10 | 10 |
11 static final int ANY_UNORDERED_NODE_TYPE = 8; | 11 static final int ANY_UNORDERED_NODE_TYPE = 8; |
12 | 12 |
13 static final int BOOLEAN_TYPE = 3; | 13 static final int BOOLEAN_TYPE = 3; |
14 | 14 |
15 static final int FIRST_ORDERED_NODE_TYPE = 9; | 15 static final int FIRST_ORDERED_NODE_TYPE = 9; |
16 | 16 |
17 static final int NUMBER_TYPE = 1; | 17 static final int NUMBER_TYPE = 1; |
18 | 18 |
19 static final int ORDERED_NODE_ITERATOR_TYPE = 5; | 19 static final int ORDERED_NODE_ITERATOR_TYPE = 5; |
20 | 20 |
21 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7; | 21 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7; |
22 | 22 |
23 static final int STRING_TYPE = 2; | 23 static final int STRING_TYPE = 2; |
24 | 24 |
25 static final int UNORDERED_NODE_ITERATOR_TYPE = 4; | 25 static final int UNORDERED_NODE_ITERATOR_TYPE = 4; |
26 | 26 |
27 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6; | 27 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6; |
28 | 28 |
29 bool get booleanValue(); | 29 final bool booleanValue; |
30 | 30 |
31 bool get invalidIteratorState(); | 31 final bool invalidIteratorState; |
32 | 32 |
33 num get numberValue(); | 33 final num numberValue; |
34 | 34 |
35 int get resultType(); | 35 final int resultType; |
36 | 36 |
37 Node get singleNodeValue(); | 37 final Node singleNodeValue; |
38 | 38 |
39 int get snapshotLength(); | 39 final int snapshotLength; |
40 | 40 |
41 String get stringValue(); | 41 final String stringValue; |
42 | 42 |
43 Node iterateNext(); | 43 Node iterateNext(); |
44 | 44 |
45 Node snapshotItem(int index); | 45 Node snapshotItem(int index); |
46 } | 46 } |
OLD | NEW |