| 30 | | /** |
|---|
| 31 | | * This implementation of <code>dragStart</code> permits the drag operation to start. |
|---|
| 32 | | * For additional information see <code>DragSourceListener.dragStart</code>. |
|---|
| 33 | | */ |
|---|
| 34 | | public void dragStart(DragSourceEvent event){} |
|---|
| 35 | | /** |
|---|
| 36 | | * This implementation of <code>dragFinished</code> does nothing. |
|---|
| 37 | | * For additional information see <code>DragSourceListener.dragFinished</code>. |
|---|
| 38 | | */ |
|---|
| 39 | | public void dragFinished(DragSourceEvent event){} |
|---|
| 40 | | /** |
|---|
| 41 | | * This implementation of <code>dragSetData</code> does nothing. |
|---|
| 42 | | * For additional information see <code>DragSourceListener.dragSetData</code>. |
|---|
| 43 | | */ |
|---|
| 44 | | public void dragSetData(DragSourceEvent event){} |
|---|
| | 31 | |
|---|
| | 32 | /** |
|---|
| | 33 | * This implementation of <code>dragStart</code> permits the drag operation to start. |
|---|
| | 34 | * For additional information see <code>DragSourceListener.dragStart</code>. |
|---|
| | 35 | * |
|---|
| | 36 | * @param event the information associated with the drag start event |
|---|
| | 37 | */ |
|---|
| | 38 | public void dragStart(DragSourceEvent event){} |
|---|
| | 39 | |
|---|
| | 40 | /** |
|---|
| | 41 | * This implementation of <code>dragFinished</code> does nothing. |
|---|
| | 42 | * For additional information see <code>DragSourceListener.dragFinished</code>. |
|---|
| | 43 | * |
|---|
| | 44 | * @param event the information associated with the drag finished event |
|---|
| | 45 | */ |
|---|
| | 46 | public void dragFinished(DragSourceEvent event){} |
|---|
| | 47 | |
|---|
| | 48 | /** |
|---|
| | 49 | * This implementation of <code>dragSetData</code> does nothing. |
|---|
| | 50 | * For additional information see <code>DragSourceListener.dragSetData</code>. |
|---|
| | 51 | * |
|---|
| | 52 | * @param event the information associated with the drag set data event |
|---|
| | 53 | */ |
|---|
| | 54 | public void dragSetData(DragSourceEvent event){} |
|---|
| | 55 | |
|---|