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
CommitLineData
73005152 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2011, 2014 Ericsson
11252342 3 *
73005152
BH
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
11252342 8 *
73005152
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 ******************************************************************************/
2bdf0193 12package org.eclipse.tracecompass.internal.tmf.ui.preferences;
73005152
BH
13
14import org.eclipse.jface.preference.PreferencePage;
15import org.eclipse.swt.SWT;
16import org.eclipse.swt.widgets.Composite;
17import org.eclipse.swt.widgets.Control;
18import org.eclipse.ui.IWorkbench;
19import org.eclipse.ui.IWorkbenchPreferencePage;
20
21/**
11252342
AM
22 * Top Level Preference Page for Tracing.
23 *
d26274e7
BH
24 * @version 1.0
25 * @author Bernd Hufmann
73005152
BH
26 */
27public class TmfTracingPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
28
29 // ------------------------------------------------------------------------
30 // Attributes
31 // ------------------------------------------------------------------------
11252342 32
73005152
BH
33 // ------------------------------------------------------------------------
34 // Constructors
35 // ------------------------------------------------------------------------
11252342 36
73005152
BH
37 // ------------------------------------------------------------------------
38 // Operations
39 // ------------------------------------------------------------------------
11252342 40
73005152
BH
41 @Override
42 protected Control createContents(Composite parent) {
43 Composite composite = new Composite(parent, SWT.NONE);
11252342 44 // No content yet!
73005152
BH
45 return composite;
46 }
47
73005152
BH
48 @Override
49 public void init(IWorkbench workbench) {
50 // Nothing to do yet!
51 }
52}
This page took 0.079314 seconds and 5 git commands to generate.