com.jrefinery.report.targets.style
Interface StyleChangeListener

All Known Implementing Classes:
ElementStyleSheet

public interface StyleChangeListener

The interface that must be supported by objects that wish to receive notification of style change events.

Author:
Thomas Morgner

Method Summary
 void styleChanged(ElementStyleSheet source, StyleKey key, java.lang.Object value)
          Receives notification that a style has changed.
 void styleRemoved(ElementStyleSheet source, StyleKey key)
          Receives notification that a style has been removed.
 

Method Detail

styleChanged

public void styleChanged(ElementStyleSheet source,
                         StyleKey key,
                         java.lang.Object value)
Receives notification that a style has changed.

Parameters:
source - the source of the change.
key - the style key.
value - the value.

styleRemoved

public void styleRemoved(ElementStyleSheet source,
                         StyleKey key)
Receives notification that a style has been removed.

Parameters:
source - the source of the change.
key - the style key.