Move RCP plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.rcp.ui / src / org / eclipse / linuxtools / internal / tracing / rcp / ui / ApplicationActionBarAdvisor.java
1 /**********************************************************************
2 * Copyright (c) 2013 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 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12 package org.eclipse.linuxtools.internal.tracing.rcp.ui;
13
14 import org.eclipse.ui.application.ActionBarAdvisor;
15 import org.eclipse.ui.application.IActionBarConfigurer;
16
17 /**
18 * ActionBarAdvisor implementation of the LTTng RCP.
19 *
20 * @author Bernd Hufmann
21 *
22 */
23 public class ApplicationActionBarAdvisor extends ActionBarAdvisor {
24
25 // ------------------------------------------------------------------------
26 // Constructor(s)
27 // ------------------------------------------------------------------------
28 /**
29 * Default constructor
30 *
31 * @param configurer
32 * - An action bar configure instance
33 */
34 public ApplicationActionBarAdvisor(IActionBarConfigurer configurer) {
35 super(configurer);
36 }
37
38 }
This page took 0.032998 seconds and 5 git commands to generate.