Class AbstractHandlerContainer

    • Constructor Detail

      • AbstractHandlerContainer

        public AbstractHandlerContainer()
        Deprecated.
    • Method Detail

      • getChildHandlers

        public Handler[] getChildHandlers()
        Deprecated.
        Specified by:
        getChildHandlers in interface HandlerContainer
        Returns:
        array of all handlers contained by this handler and it's children
      • getChildHandlersByClass

        public Handler[] getChildHandlersByClass​(java.lang.Class<?> byclass)
        Deprecated.
        Specified by:
        getChildHandlersByClass in interface HandlerContainer
        Parameters:
        byclass - the child handler class to get
        Returns:
        array of all handlers contained by this handler and it's children of the passed type.
      • getChildHandlerByClass

        public <T extends Handler> T getChildHandlerByClass​(java.lang.Class<T> byclass)
        Deprecated.
        Specified by:
        getChildHandlerByClass in interface HandlerContainer
        Type Parameters:
        T - the type of handler
        Parameters:
        byclass - the child handler class to get
        Returns:
        first handler of all handlers contained by this handler and it's children of the passed type.