Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: lib/html/doc/interface/XPathResult.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 // WARNING:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName XPathResult
10 interface XPathResult {
11
12 static final int ANY_TYPE = 0;
13
14 static final int ANY_UNORDERED_NODE_TYPE = 8;
15
16 static final int BOOLEAN_TYPE = 3;
17
18 static final int FIRST_ORDERED_NODE_TYPE = 9;
19
20 static final int NUMBER_TYPE = 1;
21
22 static final int ORDERED_NODE_ITERATOR_TYPE = 5;
23
24 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7;
25
26 static final int STRING_TYPE = 2;
27
28 static final int UNORDERED_NODE_ITERATOR_TYPE = 4;
29
30 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6;
31
32 /** @domName XPathResult.booleanValue */
33 final bool booleanValue;
34
35 /** @domName XPathResult.invalidIteratorState */
36 final bool invalidIteratorState;
37
38 /** @domName XPathResult.numberValue */
39 final num numberValue;
40
41 /** @domName XPathResult.resultType */
42 final int resultType;
43
44 /** @domName XPathResult.singleNodeValue */
45 final Node singleNodeValue;
46
47 /** @domName XPathResult.snapshotLength */
48 final int snapshotLength;
49
50 /** @domName XPathResult.stringValue */
51 final String stringValue;
52
53 /** @domName XPathResult.iterateNext */
54 Node iterateNext();
55
56 /** @domName XPathResult.snapshotItem */
57 Node snapshotItem(int index);
58 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/XPathNSResolver.dartdoc ('k') | lib/html/doc/interface/XSLTProcessor.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698