Interface MElementContainer<T extends MUIElement>

    • Method Detail

      • getChildren

        List<T> getChildren()
        Returns the value of the 'Children' containment reference list. It is bidirectional and its opposite is 'Parent'.

        This is the list of contained elements in this container. All elements must be of type T.

        Returns:
        the value of the 'Children' containment reference list.
        See Also:
        MUIElement.getParent()
      • getSelectedElement

        T getSelectedElement()
        Returns the value of the 'Selected Element' reference.

        This field contains the reference to the currently 'selected' element within a container. Note that the element must not only be in the container's children list but must also be visible in the presentation ("toBeRendered' == true).

        Returns:
        the value of the 'Selected Element' reference.
        See Also:
        setSelectedElement(MUIElement)
      • setSelectedElement

        void setSelectedElement​(T value)
        Sets the value of the 'Selected Element' reference.
        Parameters:
        value - the new value of the 'Selected Element' reference.
        See Also:
        getSelectedElement()