blob: 18d9c61bffd3936d90a6e671ae313ab60d2452a4 [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.List;
public interface InterfaceType extends ReferenceType {
public List implementors();
public List subinterfaces();
public List superinterfaces();
}