blob: fd53d208f81a049e4abf36089f768f6f1d91e701 [file] [log] [blame]
// Copyright (c) 2013, 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.
library class_view_element;
import 'observatory_element.dart';
import 'package:observatory/service.dart';
import 'package:polymer/polymer.dart';
@CustomTag('class-view')
class ClassViewElement extends ObservatoryElement {
@published ServiceMap cls;
ClassViewElement.created() : super.created();
void refresh(var done) {
cls.reload().whenComplete(done);
}
}