2010-10-26 Francois Chouinard <fchouinard@gmail.com> Contribution for Bug309042
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / project / handlers / RenameTraceHandler.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2010 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.views.project.handlers;
14
15 import org.eclipse.core.commands.AbstractHandler;
16 import org.eclipse.core.commands.ExecutionEvent;
17 import org.eclipse.core.commands.ExecutionException;
18 import org.eclipse.linuxtools.tmf.ui.views.project.model.TmfTraceNode;
19 import org.eclipse.swt.widgets.MessageBox;
20 import org.eclipse.ui.PlatformUI;
21
22 /**
23 * <b><u>RenameTraceHandler</u></b>
24 * <p>
25 * TODO: Implement me. Please.
26 */
27 public class RenameTraceHandler extends AbstractHandler {
28
29 private TmfTraceNode fTrace = null;
30
31 // ------------------------------------------------------------------------
32 // Validation
33 // ------------------------------------------------------------------------
34
35 @Override
36 public boolean isEnabled() {
37 return (fTrace != null);
38 }
39
40 // ------------------------------------------------------------------------
41 // Execution
42 // ------------------------------------------------------------------------
43
44 @Override
45 public Object execute(ExecutionEvent event) throws ExecutionException {
46
47 MessageBox mb = new MessageBox(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
48 mb.setText("Rename Trace");
49 mb.setMessage("Not implemented yet");
50 mb.open();
51
52 return null;
53 }
54
55 }
This page took 0.032958 seconds and 5 git commands to generate.