Extension SDK

oracle.ide.controls
Interface DragComponentListener

All Superinterfaces:
java.util.EventListener

public interface DragComponentListener
extends java.util.EventListener

A listener class for DragComponentEvent.


Method Summary
 void canceled(DragComponentEvent e)
          The drag operation has been canceled.
 void end(DragComponentEvent e)
          The user has dropped the component
 void move(DragComponentEvent e)
          The user is dragging the component to a new location
 void start(DragComponentEvent e)
          A drag operation is starting.
 

Method Detail

start

public void start(DragComponentEvent e)
A drag operation is starting. This call will be immediatly followed by a move().


move

public void move(DragComponentEvent e)
The user is dragging the component to a new location


end

public void end(DragComponentEvent e)
The user has dropped the component


canceled

public void canceled(DragComponentEvent e)
The drag operation has been canceled.


Extension SDK

 

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