![]() ![]() ![]() |
Appendix A
Event Summary
This table is a quick reference to JClass LiveTable's events and their corresponding event listeners. Event listeners may use up to three methods that are used during the process of executing the event. The standard naming convention for these methods are
before<Event>
,<event>
, andafter<Event>
. For details on how to use events and listeners in your programs, see Events and Listeners, in Chapter 7.
Event and
Description
Event
Methods
Action
Listener
Interface
before
on
after
Posted when a cell's contents are to be displayed in a table.
JCPrintEvent1
JCResizeCellMotionListener2
JCTableDataListener
3
1
JCPrintEvent
actions are notbefore<Event>
,on<Event>
andafter<Event>
as they are with other events; the action events areprintPageHeader()
,printPageBody()
andprintPageFooter()
.2
JCResizeCellMotionListener
has one method:resizeCellDragged()
. It is called repeatedly during cell resizing.3
JCTableDataEvents
are posted by the table's data source, and not by the table itself.
![]() ![]() ![]() |