Uses of Class
theater.Component

Uses of Component in theater
 

Subclasses of Component in theater
 class Actor
          Die Klasse Actor ist die Basisklasse aller Akteure.
 class Prop
          Die Klasse Prop ist die Basisklasse aller Requisiten.
 

Methods in theater that return types with arguments of type Component
 List<Component> Stage.getComponents(Class<?>... classes)
          Liefert eine Liste mit allen Komponenten bestimmter Klassen, die aktuell auf der Bühne platziert sind.
 List<Component> Stage.getComponentsAt(int column, int row, Class<?>... classes)
          Liefert eine Liste mit allen Komponenten bestimmter Klassen, die aktuell auf einer bestimmten Zelle der Bühne platziert sind.
 List<Component> Stage.getComponentsInside(PixelArea area, Class<?>... classes)
          Liefert eine Liste mit allen Komponenten bestimmter Klassen, deren zugeordnetes Icon vollständig innerhalb einer bestimmten PixelArea liegt.
 List<Component> Stage.getIntersectingComponents(PixelArea area, Class<?>... classes)
          Liefert eine Liste mit allen Komponenten bestimmter Klassen, deren zugeordnetes Icon eine bestimmte PixelArea berührt oder schneidet.
 

Methods in theater with parameters of type Component
 void Stage.add(Component comp, int col, int row)
          Platziert eine neue Komponente auf der Bühne.
 void Stage.remove(Component comp)
          Entfernt eine Komponente von der Bühne.
 

Method parameters in theater with type arguments of type Component
 void Stage.remove(List<Component> components)
          Entfernt alle in der Liste enthaltenen Komponenten von der Bühne.