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
CommitLineData
abfad0aa
FC
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
13package org.eclipse.linuxtools.tmf.ui.views.project.handlers;
14
15import org.eclipse.core.commands.AbstractHandler;
16import org.eclipse.core.commands.ExecutionEvent;
17import org.eclipse.core.commands.ExecutionException;
18import org.eclipse.linuxtools.tmf.ui.views.project.model.TmfTraceNode;
19import org.eclipse.swt.widgets.MessageBox;
20import org.eclipse.ui.PlatformUI;
21
22/**
23 * <b><u>RenameTraceHandler</u></b>
24 * <p>
25 * TODO: Implement me. Please.
26 */
27public class RenameTraceHandler extends AbstractHandler {
28
29 private TmfTraceNode fTrace = null;
30
31 // ------------------------------------------------------------------------
32 // Validation
33 // ------------------------------------------------------------------------
34
9ccc6d01 35 @Override
abfad0aa
FC
36 public boolean isEnabled() {
37 return (fTrace != null);
38 }
39
40 // ------------------------------------------------------------------------
41 // Execution
42 // ------------------------------------------------------------------------
43
d4011df2 44 @Override
abfad0aa
FC
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.026114 seconds and 5 git commands to generate.