Java Code Examples for org.eclipse.debug.core.DebugPlugin#fireDebugEventSet()

The following examples show how to use org.eclipse.debug.core.DebugPlugin#fireDebugEventSet() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GenerateUml2Solidity.java    From uml2solidity with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * Fires the given debug event.
 *
 * @param event debug event to fire
 */
protected void fireEvent(DebugEvent event) {
	DebugPlugin manager= DebugPlugin.getDefault();
	if (manager != null) {
		manager.fireDebugEventSet(new DebugEvent[]{event});
	}
}
 
Example 2
Source File: AbstractDebugTarget.java    From Pydev with Eclipse Public License 1.0 4 votes vote down vote up
public void fireEvent(DebugEvent event) {
    DebugPlugin manager = DebugPlugin.getDefault();
    if (manager != null) {
        manager.fireDebugEventSet(new DebugEvent[] { event });
    }
}