Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 680e05372abe9270858b62dcb1abb0343eea4e5a (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
/*******************************************************************************
 * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. All rights reserved.
 * This program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.processes.ui.internal.preferences;

/**
 * The constants for the preferences used in the process monitor.
 */
public interface IPreferenceConsts {
	// The key to access the interval grades for refreshing.
	String PREF_INTERVAL_GRADES = "PrefIntervalGrades"; //$NON-NLS-1$
	// The default value of the interval grades.
	String DEFAULT_INTERVAL_GRADES = "Off:0|Default:15"; //$NON-NLS-1$
	// The key to access the max count of the most recently used intervals.
	String PREF_INTERVAL_MRU_COUNT = "PrefIntervalMRUCount"; //$NON-NLS-1$
	// The key to access the list of the most recently used intervals.
	String PREF_INTERVAL_MRU_LIST = "PrefIntervalMRUList"; //$NON-NLS-1$
	// The default count of the most recently used intervals.
	int DEFAULT_INTERVAL_MRU_COUNT = 5;
}

Back to the top