Index: client/html/generated/src/interface/Entry.dart |
diff --git a/client/html/generated/src/interface/Entry.dart b/client/html/generated/src/interface/Entry.dart |
deleted file mode 100644 |
index b3773a65f376ac9b065f20f5052c62e9b64d68e5..0000000000000000000000000000000000000000 |
--- a/client/html/generated/src/interface/Entry.dart |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-// WARNING: Do not edit - generated code. |
- |
-interface Entry { |
- |
- DOMFileSystem get filesystem(); |
- |
- String get fullPath(); |
- |
- bool get isDirectory(); |
- |
- bool get isFile(); |
- |
- String get name(); |
- |
- void copyTo(DirectoryEntry parent, [String name, EntryCallback successCallback, ErrorCallback errorCallback]); |
- |
- void getMetadata([MetadataCallback successCallback, ErrorCallback errorCallback]); |
- |
- void getParent([EntryCallback successCallback, ErrorCallback errorCallback]); |
- |
- void moveTo(DirectoryEntry parent, [String name, EntryCallback successCallback, ErrorCallback errorCallback]); |
- |
- void remove([VoidCallback successCallback, ErrorCallback errorCallback]); |
- |
- String toURL(); |
-} |