uk.co.badgersinfoil.metaas
Interface ASInterfaceType

All Superinterfaces:
ASType

public interface ASInterfaceType
extends ASType

A handle on the definition of an ActionScript interface.


Method Summary
 void addSuperInterface(java.lang.String interfaceName)
          Adds the given ActionScript interface name to the list of interfaces which this ActionScript interface extends.
 java.util.List getSuperInterfaces()
          Returns a list of Strings which are the names of ActionScript interfaces which this ActionScript interface extends.
 void removeSuperInterface(java.lang.String interfaceName)
          Removes the given ActionScript interface name from the list of interfaces which this ActionScript interface extends.
 
Methods inherited from interface uk.co.badgersinfoil.metaas.ASType
getDocComment, getMethod, getMethods, getName, getVisibility, newMethod, removeMethod, setDocComment, setName, setVisibility
 

Method Detail

getSuperInterfaces

public java.util.List getSuperInterfaces()
Returns a list of Strings which are the names of ActionScript interfaces which this ActionScript interface extends.


addSuperInterface

public void addSuperInterface(java.lang.String interfaceName)
Adds the given ActionScript interface name to the list of interfaces which this ActionScript interface extends.


removeSuperInterface

public void removeSuperInterface(java.lang.String interfaceName)
Removes the given ActionScript interface name from the list of interfaces which this ActionScript interface extends.