Files
sdk/lib/html/doc/interface/AbstractWorker.dartdoc
T
sra@google.com 9fa3103539 Remove explicit interface versions of dartdoc files.
We will need to revisit how dartdoc is generated.
For now this is the minimal set of files to preserve hand-crafted documentation.

Review URL: https://codereview.chromium.org//11090010

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@13378 260f80e4-7a28-3924-810f-c04153c831b5
2012-10-08 22:11:31 +00:00

31 lines
986 B
Plaintext

// Copyright (c) 2012, 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:
// This file contains documentation that is merged into the real source.
// Do not make code changes here.
/// An HTML5 Abstract Worker.
abstract class AbstractWorker implements EventTarget {
/**
* The valid events associated with an AbstractWorker.
*/
AbstractWorkerEvents get on;
/** @domName AbstractWorker.addEventListener */
void $dom_addEventListener(String type, EventListener listener, [bool useCapture]);
/** @domName AbstractWorker.dispatchEvent */
bool $dom_dispatchEvent(Event evt);
/** @domName AbstractWorker.removeEventListener */
void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]);
}
abstract class AbstractWorkerEvents implements Events {
EventListenerList get error;
}