JClass DesktopViews 6.3.0 API
Documentation

com.klg.jclass.table
Interface JCTraverseCellListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
DataTable, JCListTable.Listeners, JCTraverseCellAdapter

public interface JCTraverseCellListener
extends EventListener

The listener interface for receiving JCTraverseCellEvent objects.

See Also:
JCTraverseCellEvent

Method Summary
 void afterTraverseCell(com.klg.jclass.table.JCTraverseCellEvent e)
          Invoked after the cell is traversed to if all listeners notified through traverseCell accepted the destination.
 void traverseCell(com.klg.jclass.table.JCTraverseCellEvent e)
          Invoked before a cell is traversed to.
 

Method Detail

traverseCell

public void traverseCell(com.klg.jclass.table.JCTraverseCellEvent e)
Invoked before a cell is traversed to. The event's setCancelled method can be called to prevent the traversal, or the destination cell can be modified.

Parameters:
e -
See Also:
JCTraverseCellEvent.setCancelled(boolean), JCTraverseCellEvent.setNextRow(int), JCTraverseCellEvent.setNextColumn(int)

afterTraverseCell

public void afterTraverseCell(com.klg.jclass.table.JCTraverseCellEvent e)
Invoked after the cell is traversed to if all listeners notified through traverseCell accepted the destination. If a listener cancelled the traversal in traverseCell, afterTraverseCell will be called with the cancelled flag set and the destination the same as the source location.

Parameters:
e -
See Also:
traverseCell(com.klg.jclass.table.JCTraverseCellEvent), JCTraverseCellEvent.isCancelled()

Copyright © 2004 Quest Software Inc..
All rights reserved.