blob: 2c2db92e36678f6c5d249e2e095a76db8c1579d1 [file] [log] [blame]
// Copyright (c) 2016, 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.
part of models;
abstract class TargetChangeEvent {
TargetRepository get repository;
}
abstract class TargetRepository {
Stream<TargetChangeEvent> get onChange;
Target get current;
Iterable<Target> list();
void add(String address);
void setCurrent(Target t);
void delete(Target o);
Target find(String networkAddress);
bool isConnectedVMTarget(Target target);
}