performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / operations / DeleteDescriptionElementOperation.java
index e534ee37b44664254e0a0d1f4779a1dccc586710..8690be37397fe76722f920e2cf24acc8d304cfeb 100644 (file)
@@ -1,82 +1,95 @@
-/**\r
-* Copyright (C) 2007 EDIT\r
-* European Distributed Institute of Taxonomy \r
-* http://www.e-taxonomy.eu\r
-* \r
-* The contents of this file are subject to the Mozilla Public License Version 1.1\r
-* See LICENSE.TXT at the top of this package for the full license terms.\r
-*/\r
-\r
-package eu.etaxonomy.taxeditor.operations;\r
-\r
-import org.eclipse.core.commands.ExecutionException;\r
-import org.eclipse.core.commands.operations.IUndoContext;\r
-import org.eclipse.core.runtime.IAdaptable;\r
-import org.eclipse.core.runtime.IProgressMonitor;\r
-import org.eclipse.core.runtime.IStatus;\r
-\r
-import eu.etaxonomy.cdm.model.description.DescriptionBase;\r
-import eu.etaxonomy.cdm.model.description.DescriptionElementBase;\r
-import eu.etaxonomy.taxeditor.store.StoreUtil;\r
-\r
-/**\r
- * @author p.ciardelli\r
- * @created 05.02.2009\r
- * @version 1.0\r
- */\r
-public class DeleteDescriptionElementOperation extends AbstractPostOperation {\r
-       \r
-       private DescriptionElementBase element;\r
-       private DescriptionBase description = null;\r
-\r
-       public DeleteDescriptionElementOperation(String label, IUndoContext undoContext,\r
-                       DescriptionElementBase element, IPostOperationEnabled postOperationEnabled) {\r
-               super(label, undoContext, postOperationEnabled);\r
-               \r
-               this.element = element;\r
-       }\r
-\r
-       /* (non-Javadoc)\r
-        * @see org.eclipse.core.commands.operations.AbstractOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)\r
-        */\r
-       @Override\r
-       public IStatus execute(IProgressMonitor monitor, IAdaptable info)\r
-                       throws ExecutionException {\r
-               \r
-               description = element.getInDescription();\r
-               \r
-               monitor.worked(20);\r
-               \r
-               // Remove element from description\r
-               if (description == null) {\r
-                       StoreUtil.error(this.getClass(), "Couldn't find element's description!", null);\r
-               } else {\r
-                       description.removeElement(element);\r
-               }\r
-               monitor.worked(40);\r
-\r
-        // Redraw editor if exists\r
-               return postExecute(null);\r
-       }\r
-\r
-       /* (non-Javadoc)\r
-        * @see org.eclipse.core.commands.operations.AbstractOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)\r
-        */\r
-       @Override\r
-       public IStatus redo(IProgressMonitor monitor, IAdaptable info)\r
-                       throws ExecutionException {\r
-               return execute(monitor, info);\r
-       }\r
-\r
-       /* (non-Javadoc)\r
-        * @see org.eclipse.core.commands.operations.AbstractOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)\r
-        */\r
-       @Override\r
-       public IStatus undo(IProgressMonitor monitor, IAdaptable info)\r
-                       throws ExecutionException {\r
-\r
-               description.addElement(element);\r
-               \r
-               return postExecute(element);\r
-       }\r
-}\r
+/**
+* Copyright (C) 2007 EDIT
+* European Distributed Institute of Taxonomy 
+* http://www.e-taxonomy.eu
+* 
+* The contents of this file are subject to the Mozilla Public License Version 1.1
+* See LICENSE.TXT at the top of this package for the full license terms.
+*/
+
+package eu.etaxonomy.taxeditor.operations;
+
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.commands.operations.IUndoContext;
+import org.eclipse.core.runtime.IAdaptable;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.IStatus;
+
+import eu.etaxonomy.cdm.model.description.DescriptionBase;
+import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
+import eu.etaxonomy.taxeditor.store.StoreUtil;
+
+/**
+ * <p>DeleteDescriptionElementOperation class.</p>
+ *
+ * @author p.ciardelli
+ * @created 05.02.2009
+ * @version 1.0
+ */
+public class DeleteDescriptionElementOperation extends AbstractPostOperation {
+       
+       private DescriptionElementBase element;
+       private DescriptionBase description = null;
+
+       /**
+        * <p>Constructor for DeleteDescriptionElementOperation.</p>
+        *
+        * @param label a {@link java.lang.String} object.
+        * @param undoContext a {@link org.eclipse.core.commands.operations.IUndoContext} object.
+        * @param element a {@link eu.etaxonomy.cdm.model.description.DescriptionElementBase} object.
+        * @param postOperationEnabled a {@link eu.etaxonomy.taxeditor.operations.IPostOperationEnabled} object.
+        */
+       public DeleteDescriptionElementOperation(String label, IUndoContext undoContext,
+                       DescriptionElementBase element, IPostOperationEnabled postOperationEnabled) {
+               super(label, undoContext, postOperationEnabled);
+               
+               this.element = element;
+       }
+
+       /* (non-Javadoc)
+        * @see org.eclipse.core.commands.operations.AbstractOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
+        */
+       /** {@inheritDoc} */
+       @Override
+       public IStatus execute(IProgressMonitor monitor, IAdaptable info)
+                       throws ExecutionException {
+               
+               description = element.getInDescription();
+               
+               monitor.worked(20);
+               
+               // Remove element from description
+               if (description == null) {
+                       StoreUtil.error(this.getClass(), "Couldn't find element's description!", null);
+               } else {
+                       description.removeElement(element);
+               }
+               monitor.worked(40);
+
+        // Redraw editor if exists
+               return postExecute(null);
+       }
+
+       /* (non-Javadoc)
+        * @see org.eclipse.core.commands.operations.AbstractOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
+        */
+       /** {@inheritDoc} */
+       @Override
+       public IStatus redo(IProgressMonitor monitor, IAdaptable info)
+                       throws ExecutionException {
+               return execute(monitor, info);
+       }
+
+       /* (non-Javadoc)
+        * @see org.eclipse.core.commands.operations.AbstractOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
+        */
+       /** {@inheritDoc} */
+       @Override
+       public IStatus undo(IProgressMonitor monitor, IAdaptable info)
+                       throws ExecutionException {
+
+               description.addElement(element);
+               
+               return postExecute(element);
+       }
+}