blob: 9e48f7eaba8c410e8cc0f0aa3621ed1c34431d86 [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();
}