Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bf30d92c01df0c322ef7a95f8bf91a6bf9fb50a5 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package org.eclipse.linuxtools.internal.profiling.launch.provider;
/*******************************************************************************
 * Copyright (c) 2012 Red Hat, Inc.
 * 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:
 *    Red Hat initial API and implementation
 *******************************************************************************/

/**
 * Container class for various constants
 */
public class ProviderProfileConstants {

    /**
     * The plug-in id.
     */
    public static final String PLUGIN_ID = "org.eclipse.linuxtools.profiling.launch"; //$NON-NLS-1$

    /**
     * Profiling preferences key.
     */
    public static final String PREFS_KEY = "provider"; //$NON-NLS-1$

    /**
     * Project attribute to indicate project is overriding settings
     */
    public static final String USE_PROJECT_SETTINGS = "use_project"; //$NON-NLS-1$

    /**
     * Key to acquire the extension point class parameter containing the
     * profiling type.
     */
    public static final String INIT_DATA_TYPE_KEY = "type"; //$NON-NLS-1$

    /**
     * Key to acquire the extension point class parameter containing the name to
     * be used by the options tab.
     */
    public static final String INIT_DATA_NAME_KEY = "name"; //$NON-NLS-1$

    /**
     * Key to acquire the extension point class parameter containing the
     * configuration type identifier.
     */
    public static final String INIT_DATA_CONFIG_ID_KEY = "configurationId"; //$NON-NLS-1$

    /**
     * Key to acquire the provider launch configuration attribute.
     */
    public static final String PROVIDER_CONFIG_ATT = "provider"; //$NON-NLS-1$

    /**
     * Key to acquire the tool name launch configuration attribute.
     */
    public static final String PROVIDER_CONFIG_TOOLNAME_ATT = "toolname"; //$NON-NLS-1$
}

Back to the top