Class ComponentDecoratorListener.Adapter

    • Constructor Detail

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • decoratorInserted

        public void decoratorInserted​(Component component,
                                      int index)
        Deprecated.
        Description copied from interface: ComponentDecoratorListener
        Called when a decorator has been inserted into a component's decorator sequence.
        Specified by:
        decoratorInserted in interface ComponentDecoratorListener
        Parameters:
        component - The component that has changed.
        index - The starting index of the decorator that has been inserted.
      • decoratorUpdated

        public void decoratorUpdated​(Component component,
                                     int index,
                                     Decorator previousDecorator)
        Deprecated.
        Description copied from interface: ComponentDecoratorListener
        Called when a decorator has been updated in a component's decorator sequence.
        Specified by:
        decoratorUpdated in interface ComponentDecoratorListener
        Parameters:
        component - The component that has changed.
        index - The index of the decorator that has been updated.
        previousDecorator - The previous decorator at that index.
      • decoratorsRemoved

        public void decoratorsRemoved​(Component component,
                                      int index,
                                      Sequence<Decorator> decorators)
        Deprecated.
        Description copied from interface: ComponentDecoratorListener
        Called when decorators have been removed from a component's decorator sequence.
        Specified by:
        decoratorsRemoved in interface ComponentDecoratorListener
        Parameters:
        component - The component that has changed.
        index - The starting index where decorators were removed.
        decorators - The complete sequence of decorators that were removed.