Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8d44078111473994f173edff565b0d36c029c8ff (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
/*
 *(c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 */

package org.eclipse.cdt.debug.core.cdi;

import org.eclipse.cdt.debug.core.cdi.model.ICDISignal;

/**
 * 
 * The signal manager manages the collection of signals defined 
 * for the debug session.
 * Auto update is off by default.
 * @since Jul 9, 2002
 */
public interface ICDISignalManager extends ICDIManager {

	/**
	 * Returns the array of signals defined for this session.
	 * 
	 * @return the array of signals
	 * @throws CDIException on failure. Reasons include:
	 */
	ICDISignal[] getSignals() throws CDIException;

}

Back to the top