slcom/slangc/codegraph/AbstractTypeDefinition.sauce

11 lines
239 B
Plaintext
Raw Permalink Normal View History

package slangc.codegraph;
public interface AbstractTypeDefinition extends AbstractContainer {
public TypeType getTypeType();
public int countInheritedInterfaces();
public AbstractLink getInheritedInterface(int index);
}