analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / internal / tmf / ui / preferences / TmfTracingPreferencePage.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2014 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.tracecompass.internal.tmf.ui.preferences;
13
14 import org.eclipse.jface.preference.PreferencePage;
15 import org.eclipse.swt.SWT;
16 import org.eclipse.swt.widgets.Composite;
17 import org.eclipse.swt.widgets.Control;
18 import org.eclipse.ui.IWorkbench;
19 import org.eclipse.ui.IWorkbenchPreferencePage;
20
21 /**
22 * Top Level Preference Page for Tracing.
23 *
24 * @version 1.0
25 * @author Bernd Hufmann
26 */
27 public class TmfTracingPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
28
29 // ------------------------------------------------------------------------
30 // Attributes
31 // ------------------------------------------------------------------------
32
33 // ------------------------------------------------------------------------
34 // Constructors
35 // ------------------------------------------------------------------------
36
37 // ------------------------------------------------------------------------
38 // Operations
39 // ------------------------------------------------------------------------
40
41 @Override
42 protected Control createContents(Composite parent) {
43 Composite composite = new Composite(parent, SWT.NONE);
44 // No content yet!
45 return composite;
46 }
47
48 @Override
49 public void init(IWorkbench workbench) {
50 // Nothing to do yet!
51 }
52 }
This page took 0.039217 seconds and 5 git commands to generate.