com.f1j.ss.pivot
Interface PivotGroup


public interface PivotGroup

This is the PivotRange group interface.

Since:
11.0

Method Summary
 void addChangeListener(ChangeListener listener)
          Adds a change listener to this PivotRange group.
 void addDecisionListener(DecisionListener listener)
          Adds a decision listener to this PivotRange group.
 void addErrorListener(ErrorListener listener)
          Adds an error listener to this PivotRange group.
 

Method Detail

addErrorListener

public void addErrorListener(ErrorListener listener)
Adds an error listener to this PivotRange group. Error listeners are notified when an error is encountered during the processing of a PivotRange.
Parameters:
listener - The listener to notify when a PivotRange encounters an error.
Since:
11.0
See Also:
ErrorListener

addDecisionListener

public void addDecisionListener(DecisionListener listener)
Adds a decision listener to this PivotRange group. Decision listeners are notified when a decision must be made during the processing of a PivotRange.
Parameters:
listener - The listener to notify when a decision needs to be made during the processing of a PivotRange.
Since:
11.0
See Also:
ErrorListener

addChangeListener

public void addChangeListener(ChangeListener listener)
Adds a change listener to this PivotRange group. Change listeners are notified when a change is made to a PivotRange within this PivotRange group.
Parameters:
listener - The listener to notify when a PivotRange changes.
Since:
11.0
See Also:
ChangeListener