11 lines
239 B
Plaintext
11 lines
239 B
Plaintext
|
package slangc.codegraph;
|
||
|
|
||
|
public interface AbstractTypeDefinition extends AbstractContainer {
|
||
|
|
||
|
public TypeType getTypeType();
|
||
|
|
||
|
public int countInheritedInterfaces();
|
||
|
|
||
|
public AbstractLink getInheritedInterface(int index);
|
||
|
}
|