Interface Container<E>

    • Method Detail

      • addChild

        @Internal
        void addChild​(@Nullable
                      @Nullable java.lang.String id,
                      @NotNull
                      @NotNull SVGNode node)
      • children

        java.util.List<? extends @NotNull E> children()
        Return all children of this container. Note that the return type of this function internationally contains a wild card to make it a compilation error trying to modify it.
        Returns:
        the list of children.
      • childrenOfType

        default <T extends E> java.util.List<@NotNull T> childrenOfType​(java.lang.Class<T> type)