~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/IDEPreferencePage.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:
22
22
public class IDEPreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage {
23
23
        public IDEPreferencePage() {
24
24
                super(GRID);
25
 
                LogManager.logDebug("Start IDEPreferencePage:", this);
 
25
                LogManager.logDebug("Start IDEPreferencePage:", this); //$NON-NLS-1$
26
26
                setPreferenceStore(IDEPlugin.getDefault().getPreferenceStore());
27
27
                setDescription("Preferences when loading the IDE perspective");
28
 
                LogManager.logDebug("End IDEPreferencePage:", this);
 
28
                LogManager.logDebug("End IDEPreferencePage:", this); //$NON-NLS-1$
29
29
        }
30
30
        
 
31
        @Override
31
32
        public void createFieldEditors() {
32
 
                LogManager.logDebug("Start createFieldEditors:", this);
33
 
                addField(new BooleanFieldEditor(
34
 
                                IDEPreferenceConstants.P_STORED_TREE, 
35
 
                                Localization.getString("IDEPreferencePage.UseStoredTapsetTree"),
36
 
                                getFieldEditorParent()));
37
 
                                LogManager.logDebug("End createFieldEditors:", this);
 
33
                LogManager.logDebug("Start createFieldEditors:", this); //$NON-NLS-1$
 
34
                addField(new BooleanFieldEditor(
 
35
                                IDEPreferenceConstants.P_STORED_TREE,
 
36
                                Localization.getString("IDEPreferencePage.UseStoredTapsetTree"), //$NON-NLS-1$
 
37
                                getFieldEditorParent()));
 
38
                addField(new BooleanFieldEditor(
 
39
                                IDEPreferenceConstants.P_REMOTE_PROBES,
 
40
                                Localization.getString("IDEPreferencePage.RemoteProbes"), //$NON-NLS-1$
 
41
                                getFieldEditorParent()));
 
42
                LogManager.logDebug("End createFieldEditors:", this); //$NON-NLS-1$
38
43
        }
39
44
 
40
45
        public void init(IWorkbench workbench) {
41
 
                LogManager.logInfo("Initializing", this);
 
46
                LogManager.logInfo("Initializing", this); //$NON-NLS-1$
42
47
        }
43
48
 
 
49
        @Override
44
50
        public void dispose() {
45
 
                LogManager.logInfo("Disposing", this);
 
51
                LogManager.logInfo("Disposing", this); //$NON-NLS-1$
46
52
                super.dispose();
47
53
        }
48
 
}
 
 
b'\\ No newline at end of file'
 
54
}