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 35011cace0760398702cec85a5a39509005cee3b..203bc2ce38da73ecde686b5028b8b4f8f9c3f635 100644 (file)
@@ -1,43 +1,48 @@
-/*******************************************************************************\r
- * Copyright (c) 2010 Ericsson\r
- * \r
- * All rights reserved. This program and the accompanying materials are\r
- * made available under the terms of the Eclipse Public License v1.0 which\r
- * accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- * \r
- * Contributors:\r
- *   Patrick Tasse - Initial API and implementation\r
- *******************************************************************************/\r
-\r
-package org.eclipse.linuxtools.internal.tmf.ui.editors.handlers;\r
-\r
-import org.eclipse.core.commands.AbstractHandler;\r
-import org.eclipse.core.commands.ExecutionEvent;\r
-import org.eclipse.core.commands.ExecutionException;\r
-import org.eclipse.linuxtools.tmf.ui.editors.TmfEventsEditor;\r
-import org.eclipse.ui.IEditorPart;\r
-import org.eclipse.ui.IWorkbench;\r
-import org.eclipse.ui.IWorkbenchPage;\r
-import org.eclipse.ui.PlatformUI;\r
-\r
-public class AddBookmarkHandler extends AbstractHandler {\r
-\r
-       @Override\r
-    public boolean isEnabled() {\r
-               return true;\r
-    }\r
-\r
-       @Override\r
-       public Object execute(ExecutionEvent event) throws ExecutionException {\r
-        IWorkbench wb = PlatformUI.getWorkbench();\r
-        IWorkbenchPage activePage = wb.getActiveWorkbenchWindow().getActivePage();\r
-        IEditorPart activeEditor = activePage.getActiveEditor();\r
-        if (activeEditor instanceof TmfEventsEditor) {\r
-               TmfEventsEditor editor = (TmfEventsEditor) activeEditor;\r
-               editor.addBookmark();\r
-        }\r
-               return null;\r
-       }\r
-\r
-}\r
+/*******************************************************************************
+ * 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
+ *******************************************************************************/
+
+package org.eclipse.linuxtools.internal.tmf.ui.editors.handlers;
+
+import org.eclipse.core.commands.AbstractHandler;
+import org.eclipse.core.commands.ExecutionEvent;
+import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.linuxtools.tmf.ui.editors.TmfEventsEditor;
+import org.eclipse.ui.IEditorPart;
+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
+    public boolean isEnabled() {
+        return true;
+    }
+
+    @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();
+        }
+        return null;
+    }
+
+}
This page took 0.024688 seconds and 5 git commands to generate.