Class HandlerCollection

    • Constructor Detail

      • HandlerCollection

        public HandlerCollection()
        Deprecated.
      • HandlerCollection

        public HandlerCollection​(Handler... handlers)
        Deprecated.
      • HandlerCollection

        public HandlerCollection​(boolean mutableWhenRunning,
                                 Handler... handlers)
        Deprecated.
    • Method Detail

      • setHandlers

        public void setHandlers​(Handler[] handlers)
        Deprecated.
        Parameters:
        handlers - the array of handlers to set.
      • addHandler

        public void addHandler​(Handler handler)
        Deprecated.
        Adds a handler. This implementation adds the passed handler to the end of the existing collection of handlers. If the handler is already added, it is removed and readded
      • prependHandler

        public void prependHandler​(Handler handler)
        Deprecated.
        Prepends a handler. This implementation adds the passed handler to the start of the existing collection of handlers.
      • removeHandler

        public void removeHandler​(Handler handler)
        Deprecated.