~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/internal/tmf/ui/preferences/TmfTracingPreferencePage.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2011, 2012 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.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
    /*
 
42
     * (non-Javadoc)
 
43
     * @see org.eclipse.jface.preference.PreferencePage#createContents(org.eclipse.swt.widgets.Composite)
 
44
     */
 
45
    @Override
 
46
    protected Control createContents(Composite parent) {
 
47
        Composite composite = new Composite(parent, SWT.NONE);
 
48
        // No content yet! 
 
49
        return composite;
 
50
    }
 
51
 
 
52
    /*
 
53
     * (non-Javadoc)
 
54
     * @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
 
55
     */
 
56
    @Override
 
57
    public void init(IWorkbench workbench) {
 
58
        // Nothing to do yet!
 
59
    }
 
60
}