Package org.zkoss.pivot.impl
Class AbstractPivotModel
- java.lang.Object
-
- org.zkoss.pivot.impl.AbstractPivotModel
-
- All Implemented Interfaces:
Serializable
,PivotModel
- Direct Known Subclasses:
TabularPivotModel
public abstract class AbstractPivotModel extends Object implements PivotModel, Serializable
A skeletal implementation forPivotModel
- Author:
- jumperchen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractPivotModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPivotDataListener(PivotDataListener p)
Adds a pivot data listener.protected void
fireEvent()
Fires aPivotDataEvent
for all registered listener (thruaddPivotDataListener(org.zkoss.pivot.event.PivotDataListener)
.void
removePivotDataListener(PivotDataListener p)
Removes a pivot data listener.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.zkoss.pivot.PivotModel
getColumnHeaderTree, getFields, getFields, getRowHeaderTree, getValue
-
-
-
-
Method Detail
-
addPivotDataListener
public void addPivotDataListener(PivotDataListener p)
Description copied from interface:PivotModel
Adds a pivot data listener.- Specified by:
addPivotDataListener
in interfacePivotModel
- See Also:
PivotDataListener
-
removePivotDataListener
public void removePivotDataListener(PivotDataListener p)
Description copied from interface:PivotModel
Removes a pivot data listener.- Specified by:
removePivotDataListener
in interfacePivotModel
- See Also:
PivotDataListener
-
fireEvent
protected void fireEvent()
Fires aPivotDataEvent
for all registered listener (thruaddPivotDataListener(org.zkoss.pivot.event.PivotDataListener)
.
-
-