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

Side by Side Diff: lib/html/doc/interface/FileException.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
« no previous file with comments | « lib/html/doc/interface/FileError.dartdoc ('k') | lib/html/doc/interface/FileList.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 FileException
10 interface FileException {
11
12 static final int ABORT_ERR = 3;
13
14 static final int ENCODING_ERR = 5;
15
16 static final int INVALID_MODIFICATION_ERR = 9;
17
18 static final int INVALID_STATE_ERR = 7;
19
20 static final int NOT_FOUND_ERR = 1;
21
22 static final int NOT_READABLE_ERR = 4;
23
24 static final int NO_MODIFICATION_ALLOWED_ERR = 6;
25
26 static final int PATH_EXISTS_ERR = 12;
27
28 static final int QUOTA_EXCEEDED_ERR = 10;
29
30 static final int SECURITY_ERR = 2;
31
32 static final int SYNTAX_ERR = 8;
33
34 static final int TYPE_MISMATCH_ERR = 11;
35
36 /** @domName FileException.code */
37 final int code;
38
39 /** @domName FileException.message */
40 final String message;
41
42 /** @domName FileException.name */
43 final String name;
44
45 /** @domName FileException.toString */
46 String toString();
47 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/FileError.dartdoc ('k') | lib/html/doc/interface/FileList.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698