Interface AttributesContainerCache.AttributeCollector<ATTRIBUTETYPE,​PARENTTYPE>

  • Type Parameters:
    ATTRIBUTETYPE - The type of the attributes.
    PARENTTYPE - The type of the parent's object.
    Enclosing class:
    AttributesContainerCache<ATTRIBUTETYPE,​PARENTTYPE>

    public static interface AttributesContainerCache.AttributeCollector<ATTRIBUTETYPE,​PARENTTYPE>
    The AttributeCollector retrieves all attributes from the parent's object.
    Author:
    Markus von RĂ¼den
    • Method Detail

      • getAttributes

        List<ATTRIBUTETYPE> getAttributes​(PARENTTYPE parent)
        Retrieves all attributes from the parent's object. Usually should do something like return parent.getChildren()
        Parameters:
        parent - The parent object.
        Returns:
        all attributes from the parent's object.