Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 451305ee301a57cfdde97529e58fff4ffac0f46c (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) 2012 Wind River Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.debug.ui;

public interface ITCFDebugUIConstants {

    /**
     * View ID for a view that shows contexts filtered according to view properties.
     */
    final static String ID_CONTEXT_QUERY_VIEW = "org.eclipse.tcf.debug.ui.ContextQueryView";

    /**
     * Property of a view presentation context which holds a query string, that is
     * used to select a sub-set of contexts.
     */
    final static String PROP_CONTEXT_QUERY = "query";

    /**
     * Property of a view presentation context which holds a set of strings,
     * that are used to select a sub-set of contexts.
     */
    final static String PROP_FILTER_CONTEXTS = "contexts";
}

Back to the top