Package net.officefloor.gef.editor
Interface ChildrenGroup<M extends Model,E extends java.lang.Enum<E>>
-
- All Known Implementing Classes:
ChildrenGroupFactory.ChildrenGroupImpl
public interface ChildrenGroup<M extends Model,E extends java.lang.Enum<E>>
Child group.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javafx.collections.ObservableList<AdaptedChild<?>>
getChildren()
Obtains theAdaptedChild
instances.java.lang.String
getChildrenGroupName()
Obtains theChildrenGroupFactory.ChildrenGroupImpl
name.E[]
getEvents()
Obtains the events.AdaptedChild<M>
getParent()
Obtains the parentAdaptedChild
.
-
-
-
Method Detail
-
getChildrenGroupName
java.lang.String getChildrenGroupName()
Obtains theChildrenGroupFactory.ChildrenGroupImpl
name.- Returns:
ChildrenGroupFactory.ChildrenGroupImpl
name.
-
getParent
AdaptedChild<M> getParent()
Obtains the parentAdaptedChild
.- Returns:
- Parent
AdaptedChild
.
-
getChildren
javafx.collections.ObservableList<AdaptedChild<?>> getChildren()
Obtains theAdaptedChild
instances.- Returns:
AdaptedChild
instances.
-
getEvents
E[] getEvents()
Obtains the events.- Returns:
- Events.
-
-