Interface ViewItemAccessor

    • Method Detail

      • addViewItem

        void addViewItem​(ViewItem item)
        Add a view item in the accessor
        Parameters:
        item - the item to add
      • insertViewItem

        void insertViewItem​(ViewItem item,
                            int index)
        Insert a view item in the accessor at the given index
        Parameters:
        item - the item to insert
        index - index at which the item has to be inserted
      • removeViewItem

        boolean removeViewItem​(ViewItem item)
        Removes the given items of this accessor
        Parameters:
        item - the item to remove
        Returns:
        true if this accessor contained the given item, false otherwise
      • clear

        void clear()
        Removes all items of this accessor
      • addViewItems

        default void addViewItems​(List<ViewItem> items)
        Add view items in the accessor
        Parameters:
        items - the items to add
      • hasModelViewItem

        default boolean hasModelViewItem​(ModelViewItem item)
        Checks if the current ViewItemAccessor contains the given model view item Consider that the accessor contains the given item if it contains an item representing the same definition AND with the same children if it is a group
        Parameters:
        item - the item
        Returns:
        true if the accessor contains the given item, false otherwise
      • hasModelViewItem

        default boolean hasModelViewItem​(String itemName)
        Checks if there is a model view item with the given name
        Parameters:
        itemName - the name of the item
        Returns:
        true if the accessor can acces to an item with the given name, false otherwise
      • getModelViewItem

        default ModelViewItem getModelViewItem​(String itemName)
        Retrieves the model view item with the given name If there are more than one corresponding items, the first one is retrieved
        Parameters:
        itemName - the name of the item
        Returns:
        the model view item, or null if none was found