performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / IDropTargetable.java
index f1cc39d557c90e7bbf3f442fdca63c26c5832a8d..553ea5db2ee37834780a7e885a951a6cc2e58ba5 100644 (file)
@@ -9,16 +9,34 @@ import eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor;
 import eu.etaxonomy.taxeditor.operations.IPostOperationEnabled;
 
 /**
- * @author n.hoffmann
+ * <p>IDropTargetable interface.</p>
  *
+ * @author n.hoffmann
+ * @version $Id: $
  */
 public interface IDropTargetable extends IPostOperationEnabled {
 
+       /**
+        * <p>getControl</p>
+        *
+        * @return a {@link org.eclipse.swt.widgets.Composite} object.
+        */
        public Composite getControl();
        
+       /**
+        * <p>getNameEditor</p>
+        *
+        * @return a {@link eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor} object.
+        */
        public TaxonNameEditor getNameEditor();
 
+       /**
+        * <p>dragEntered</p>
+        */
        public void dragEntered();
 
+       /**
+        * <p>dragLeft</p>
+        */
        public void dragLeft();
 }