Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1eeecc7fa14e60a76495e3a08a02c93911b8d088 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Copyright (c) 2006, 2018 IBM Corporation and others.
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - Jeff Briggs, Henry Hughes, Ryan Morse
 *******************************************************************************/

package org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences;

public class GraphingPreferenceConstants {
    //graphing
    public static final String P_GRAPH_UPDATE_DELAY = "GraphUpdateDelay"; //$NON-NLS-1$

    //graphing.datatable
    public static final String P_JUMP_NEW_TABLE_ENTRY = "JumpNewTableEntry"; //$NON-NLS-1$
    public static final String P_AUTO_RESIZE = "AutoResizeColumns"; //$NON-NLS-1$
    public static final String P_MAX_DATA_ITEMS = "MaxDataItems"; //$NON-NLS-1$

    //graphing.graph
    public static final String P_SHOW_X_GRID_LINES = "ShowXGridLines"; //$NON-NLS-1$
    public static final String P_SHOW_Y_GRID_LINES = "ShowYGridLines"; //$NON-NLS-1$
    public static final String P_VIEWABLE_DATA_ITEMS = "ViewableDataItems"; //$NON-NLS-1$
    public static final String P_X_SERIES_TICKS = "XSeriesTicks"; //$NON-NLS-1$
    public static final String P_Y_SERIES_TICKS = "YSeriesTicks"; //$NON-NLS-1$
}

Back to the top