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

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/preferences/TypeingPreferencePage.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*******************************************************************************
2
 
 * Copyright (c) 2006 IBM Corporation.
3
 
 * All rights reserved. This program and the accompanying materials
4
 
 * are made available under the terms of the Eclipse Public License v1.0
5
 
 * which accompanies this distribution, and is available at
6
 
 * http://www.eclipse.org/legal/epl-v10.html
7
 
 *
8
 
 * Contributors:
9
 
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
10
 
 *******************************************************************************/
11
 
 
12
 
package org.eclipse.linuxtools.internal.systemtap.ui.ide.preferences;
13
 
 
14
 
import org.eclipse.jface.preference.*;
15
 
import org.eclipse.linuxtools.internal.systemtap.ui.ide.IDEPlugin;
16
 
import org.eclipse.linuxtools.internal.systemtap.ui.ide.Localization;
17
 
import org.eclipse.linuxtools.systemtap.ui.logging.LogManager;
18
 
import org.eclipse.ui.IWorkbenchPreferencePage;
19
 
import org.eclipse.ui.IWorkbench;
20
 
 
21
 
 
22
 
public class TypeingPreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage {
23
 
        public TypeingPreferencePage() {
24
 
                super(GRID);
25
 
                LogManager.logDebug("Start TypeingPreferencePage:", this);
26
 
                setPreferenceStore(IDEPlugin.getDefault().getPreferenceStore());
27
 
                setDescription(Localization.getString("TypeingPreferencePage.TypingPreferenceDescription"));
28
 
                LogManager.logDebug("End TypeingPreferencePage:", this);
29
 
        }
30
 
        
31
 
        //TODO: Add content to this page
32
 
        public void createFieldEditors() {
33
 
                LogManager.logDebug("Start createFieldEditors:", this);
34
 
                LogManager.logDebug("End createFieldEditors:", this);
35
 
        }
36
 
 
37
 
        public void init(IWorkbench workbench) {
38
 
                LogManager.logInfo("Initializing", this);
39
 
        }
40
 
 
41
 
        public void dispose() {
42
 
                LogManager.logInfo("Disposing", this);
43
 
                super.dispose();
44
 
        }
45
 
}
 
 
b'\\ No newline at end of file'