Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e1d077fac69d56a84296110ca84493eb4af73d96 (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
61
62
63
64
65
/*******************************************************************************
 * Copyright (c) 2009, 2010 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 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.debug.internal.ui.breakpoints.provisional;

/**
 * Constants to use with Breakpoint view.  
 * 
 * @since 3.6 
 */
public interface IBreakpointUIConstants {
    /** 
     * Breakpoints presentation context property used to retrieve the array of 
     * breakpoint organizers.  The expected property type is 
     * <code>IBreakpointOrganizer[]</code>.  If property value is <code>null</code>, 
     * the breakpoint categories should not be shown.
     * 
     * @see org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext#getProperty(String)
     */
    public static final String PROP_BREAKPOINTS_ORGANIZERS      = "BreakpointOrganizers";   //$NON-NLS-1$

    /** 
     * Breakpoints presentation context property used to retrieve a flag 
     * indicating whether the list of breakpoints should be filtered based
     * on the active debug context.  The returned property value should 
     * be of type <code>java.lang.Boolean</code>.  If property value is 
     * <code>null</code>, then value should be treated the same as 
     * <code>Boolean.FALSE</code>.
     * 
     * @see org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext#getProperty(String)
     */
    public static final String PROP_BREAKPOINTS_FILTER_SELECTION = "FilterSelection";       //$NON-NLS-1$

    /** 
     * Breakpoints presentation context property used to retrieve a flag 
     * indicating whether breakpoints view selection should be updated  
     * upon a breakpoint event in debug model.  The returned property value 
     * should be of type <code>java.lang.Boolean</code>.  If property value is 
     * <code>null</code>, then value should be treated the same as 
     * <code>Boolean.FALSE</code>.
     * 
     * @see org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext#getProperty(String)
     */
    public static final String PROP_BREAKPOINTS_TRACK_SELECTION = "TrackSelection";         //$NON-NLS-1$ 

    /** 
     * Breakpoints presentation context property used to retrieve a
     * comparator for sorting breakpoints.  The returned property value should 
     * be of type <code>java.util.Comparator</code>.  If property value is 
     * <code>null</code>, the breakpoints should not be sorted.
     * 
     * @see org.eclipse.debug.internal.ui.viewers.model.provisional.IPresentationContext#getProperty(String)
     */
    public static final String PROP_BREAKPOINTS_ELEMENT_COMPARATOR = "ElementComparator";   //$NON-NLS-1$

	public static final String PROP_BREAKPOINTS_ELEMENT_COMPARATOR_SORT = "ElementComparatorSort"; //$NON-NLS-1$

}

Back to the top