/**
* Setup Drag and Drop capabilities for this component.
*/
private void setupDND() {
dragNdropHandler = new DataItemTransferHandler(this);
dragNdropHandler.addFlavor("java.util.ArrayList"); //$NON-NLS-1$
// add the handler to this component so it will accept a drop
this.setTransferHandler(dragNdropHandler);
}