Extension SDK 9.0.5

oracle.javatools.editor.gutter
Interface GutterClickListener

All Superinterfaces:
java.util.EventListener

public interface GutterClickListener
extends java.util.EventListener

The GutterClickListener interface should be implemented by clients interested in receiving a notification event when the user clicks in the Gutter with the mouse. In order not to have undefined behavior, only a single click listener should be registered to respond to user mouse clicks in the Gutter - this is not enforced programmatically however.

See Also:
Gutter

Method Summary
 void lineClicked(Gutter gutter, int clickedLine)
          Notify listeners that the user clicked in the gutter in the given line.
 

Method Detail

lineClicked

public void lineClicked(Gutter gutter,
                        int clickedLine)
Notify listeners that the user clicked in the gutter in the given line. The Gutter can be obtained from the column.

Parameters:
gutter - the Gutter that was clicked
clickedLine - the line that was clicked

Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.