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

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.systemtap.ui.graphing/src/org/eclipse/linuxtools/internal/systemtap/ui/graphing/preferences/DataTablePreferencePage.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:
26
26
public class DataTablePreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage {
27
27
        public DataTablePreferencePage() {
28
28
                super(GRID);
29
 
                LogManager.logDebug("Start DataTablePreferencePage:", this);
 
29
                LogManager.logDebug("Start DataTablePreferencePage:", this); //$NON-NLS-1$
30
30
                //setPreferenceStore(GraphingAPIUIPlugin.getDefault().getPreferenceStore());
31
31
                setPreferenceStore(GraphingPlugin.getDefault().getPreferenceStore());
32
32
                setDescription(Localization.getString("DataTablePreferencePage.GraphDisplayPreferences"));
33
 
                LogManager.logDebug("End DataTablePreferencePage:", this);
 
33
                LogManager.logDebug("End DataTablePreferencePage:", this); //$NON-NLS-1$
34
34
        }
35
35
        
 
36
        @Override
36
37
        public void createFieldEditors() {
37
 
                LogManager.logDebug("Start createFieldEditors:", this);
 
38
                LogManager.logDebug("Start createFieldEditors:", this); //$NON-NLS-1$
38
39
 
39
40
                addField(new BooleanFieldEditor(
40
41
                                GraphingAPIPreferenceConstants.P_JUMP_NEW_TABLE_ENTRY, 
52
53
                                Localization.getString("DataTablePreferencePage.MaxDataItems"),
53
54
                                getFieldEditorParent()));
54
55
                
55
 
                LogManager.logDebug("End createFieldEditors:", this);
 
56
                LogManager.logDebug("End createFieldEditors:", this); //$NON-NLS-1$
56
57
        }
57
58
 
58
59
        public void init(IWorkbench workbench) {
59
 
                LogManager.logDebug("Start init:", this);
60
 
                LogManager.logInfo("Initializing", this);
61
 
                LogManager.logDebug("End init:", this);
 
60
                LogManager.logDebug("Start init:", this); //$NON-NLS-1$
 
61
                LogManager.logInfo("Initializing", this); //$NON-NLS-1$
 
62
                LogManager.logDebug("End init:", this); //$NON-NLS-1$
62
63
        }
63
64
        
 
65
        @Override
64
66
        public void dispose() {
65
 
                LogManager.logDebug("Start dispose:", this);
66
 
                LogManager.logInfo("Disposing", this);
 
67
                LogManager.logDebug("Start dispose:", this); //$NON-NLS-1$
 
68
                LogManager.logInfo("Disposing", this); //$NON-NLS-1$
67
69
                super.dispose();
68
 
                LogManager.logDebug("End dispose:", this);
 
70
                LogManager.logDebug("End dispose:", this); //$NON-NLS-1$
69
71
        }
70
72
}
71
73