tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / editors / handlers / AddBookmarkHandler.java
index 1793371b3ae32805b5b7dcb68d39bcc91e237613..203bc2ce38da73ecde686b5028b8b4f8f9c3f635 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
- * Copyright (c) 2010 Ericsson
- * 
+ * Copyright (c) 2010, 2013 Ericsson
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Patrick Tasse - Initial API and implementation
  *******************************************************************************/
@@ -21,23 +21,28 @@ import org.eclipse.ui.IWorkbench;
 import org.eclipse.ui.IWorkbenchPage;
 import org.eclipse.ui.PlatformUI;
 
+/**
+ * Handler to add bookmarks.
+ *
+ * @author Patrick Tasse
+ */
 public class AddBookmarkHandler extends AbstractHandler {
 
-       @Override
+    @Override
     public boolean isEnabled() {
-               return true;
+        return true;
     }
 
-       @Override
-       public Object execute(ExecutionEvent event) throws ExecutionException {
+    @Override
+    public Object execute(ExecutionEvent event) throws ExecutionException {
         IWorkbench wb = PlatformUI.getWorkbench();
         IWorkbenchPage activePage = wb.getActiveWorkbenchWindow().getActivePage();
         IEditorPart activeEditor = activePage.getActiveEditor();
         if (activeEditor instanceof TmfEventsEditor) {
-               TmfEventsEditor editor = (TmfEventsEditor) activeEditor;
-               editor.addBookmark();
+            TmfEventsEditor editor = (TmfEventsEditor) activeEditor;
+            editor.addBookmark();
         }
-               return null;
-       }
+        return null;
+    }
 
 }
This page took 0.038356 seconds and 5 git commands to generate.