Interface IAddAtStartStore

    • Method Detail

      • remove

        void remove​(String id)
        remove component id from store
        Parameters:
        id - component id
      • remove

        void remove​(Component component)
        remove component id from store
        Parameters:
        component - component whose id has to be removed
      • iterator

        Iterator<String> iterator()
        iterator of components id kept in the store
        Returns:
        iterator to iterate though components id
      • size

        int size()
        count of ids kept in store
        Returns:
        size of store,count of components id
      • add

        void add​(Component... components)
        adds components id in store along with their indexes

        should be called before calling simpleAdd(Components) else it will not assume the right quickview indexes

        Parameters:
        components - component that are added at start
      • contains

        boolean contains​(Component component)
        returns true if component's id exist in store
        Parameters:
        component -
        Returns:
        true if component id of the component is stored
      • contains

        boolean contains​(String componentId)
        returns true if id exists in store
        Parameters:
        componentId -
        Returns:
        true if component id of the component is stored