Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d2d3cc914bf08e89ddf497a6cc5ecad45b3e421a (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
/**
 * ProcessPropertiesFilter.java
 * Created on Sep 14, 2013
 *
 * Copyright (c) 2013 Wind River Systems, Inc.
 *
 * The right to copy, distribute, modify, or otherwise make use
 * of this software may be licensed only pursuant to the terms
 * of an applicable Wind River license agreement.
 */
package org.eclipse.tcf.te.tcf.processes.ui.internal.tabbed;

import org.eclipse.core.runtime.Platform;

/**
 * The filter to filter out non process nodes.
 */
public class ProcessPropertiesFilter extends ProcessContextFilter {

	/*
	 * (non-Javadoc)
	 * @see org.eclipse.jface.viewers.IFilter#select(java.lang.Object)
	 */
	@Override
	public boolean select(Object toTest) {
		return Platform.inDebugMode() && super.select(toTest);
	}

}

Back to the top