Interface IComponentGroup

    • Method Detail

      • addElement

        void addElement​(java.lang.Object k)
        Adds an element to the group
        Parameters:
        k - The element.
      • removeElement

        void removeElement​(java.lang.Object k)
        Removes an element from the group
        Parameters:
        k - The element.
      • size

        int size()
        Returns:
        The size of the group.
      • iterator

        java.util.Iterator iterator()
        Returns:
        The iterator of the group.
      • getElements

        java.util.List getElements()
        Returns:
        The element list.
      • contains

        boolean contains​(java.lang.Object k)
        Returns true if the element is in the group.
        Parameters:
        k - The element.
        Returns:
        true if the element is in the group.