1 11 package org.eclipse.swt.dnd; 12 13 import org.eclipse.swt.*; 14 import org.eclipse.swt.widgets.*; 15 16 38 public class DragSourceEffect extends DragSourceAdapter { 39 Control control = null; 40 41 50 public DragSourceEffect(Control control) { 51 if (control == null) SWT.error(SWT.ERROR_NULL_ARGUMENT); 52 this.control = control; 53 } 54 55 61 public Control getControl() { 62 return control; 63 } 64 } 65 | Popular Tags |