blob: b1648aa22e5c7acb2b01723d6f49411efa89f2da [file] [log] [blame]
// 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.
package com.google.dart.compiler.ast;
public interface HasObsoleteMetadata {
DartObsoleteMetadata getObsoleteMetadata();
void setObsoleteMetadata(DartObsoleteMetadata metadata);
}