Interface IFrameworkResourceParent

  • All Superinterfaces:
    IFrameworkResource

    @Deprecated
    public interface IFrameworkResourceParent
    extends IFrameworkResource
    Deprecated.
    This class apparently is no longer used.
    a set of interfaces for managing child IFrameworkResource instances. Each child is keyed by its name.
    • Method Detail

      • getChild

        IFrameworkResource getChild​(java.lang.String name)
        Deprecated.
        Gets specified child
        Parameters:
        name - Name of child
        Returns:
        child instance
      • existsChild

        boolean existsChild​(java.lang.String name)
        Deprecated.
        Checks if a child by that name exists
        Parameters:
        name - key to lookup child
        Returns:
        true if a child by that name exists
      • childCouldBeLoaded

        boolean childCouldBeLoaded​(java.lang.String name)
        Deprecated.
        Parameters:
        name - child name
        Returns:
        true if the child resource could be loaded from a file resource
      • loadChild

        IFrameworkResource loadChild​(java.lang.String name)
        Deprecated.
        Parameters:
        name - child name
        Returns:
        Load a specified child by name, returning null if it does not exist
      • listChildren

        java.util.Collection listChildren()
        Deprecated.
        List all children.
        Returns:
        A Collection of IFrameworkResource children
      • listChildNames

        java.util.Collection listChildNames()
        Deprecated.
        List all child names.
        Returns:
        A Collection of Strings
      • remove

        void remove​(java.lang.String name)
        Deprecated.
        Remove the child's base directory
        Parameters:
        name - Name of child
      • initialize

        void initialize()
        Deprecated.
        initialize the parent. This may ask it to load in all children
      • existsChildResourceDirectory

        boolean existsChildResourceDirectory​(java.lang.String name)
        Deprecated.
        Checks if a child's base dir exists
        Parameters:
        name - name of child
        Returns:
        true if it exists