Revision 13198 trunk/libraries/libUIComponent/src/org/gvsig/gui/beans/controls/dnd/JDnDTable.java

View differences:

JDnDTable.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.1  2007-08-20 08:34:46  evercher
46
* Revision 1.2  2007-08-21 09:56:44  bsanchez
47
* - Variable no usada
48
*
49
* Revision 1.1  2007/08/20 08:34:46  evercher
47 50
* He fusionado LibUI con LibUIComponents
48 51
*
49 52
* Revision 1.1  2006/09/21 16:35:12  jaume
......
93 96

  
94 97
	private CellCoordinates	overCellCoordinates = null;
95 98
	private DragSource	dragSource;
96
	private DropTarget	dropTarget;
97 99
	private CellCoordinates[]	selectedCells;
98 100
	private boolean	dragging;
99 101
	private CellCoordinates currSelectedCell;
......
109 111
		dragSource.createDefaultDragGestureRecognizer(this, DnDConstants.ACTION_MOVE, this);
110 112

  
111 113
		// Configure ourselves to be a drop target
112
		dropTarget = new DropTarget(this, this);
114
		new DropTarget(this, this);
113 115
	}
114 116

  
115 117
	public JDnDTable( JDnDTableModel model ) {
......
119 121
        dragSource.createDefaultDragGestureRecognizer( this, DnDConstants.ACTION_MOVE, this);
120 122

  
121 123
        // Configure ourselves to be a drop target
122
        dropTarget = new DropTarget( this, this );
124
        new DropTarget( this, this );
123 125
    }
124 126

  
125 127
	public void dragEnter(DragSourceDragEvent dsde) {

Also available in: Unified diff