org.eclipse.core.commands.IExecutionListener Java Examples

The following examples show how to use org.eclipse.core.commands.IExecutionListener. 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: MarkUtils.java    From e4macs with Eclipse Public License 1.0 4 votes vote down vote up
static IExecutionListener getTagListener() {
	return tagMarker;
}
 
Example #2
Source File: KillRingListeners.java    From e4macs with Eclipse Public License 1.0 4 votes vote down vote up
static IExecutionListener getExecListener(boolean isReverse){
	return (isReverse ?  StaticRevExecection.revexecutionListener : StaticExecection.executionListener);
}
 
Example #3
Source File: KillRingListeners.java    From e4macs with Eclipse Public License 1.0 4 votes vote down vote up
static IExecutionListener getCopyExecListener(boolean isReverse) {
	return (isReverse ?  StaticRevCopyExecection.revcopyexecutionListener : StaticCopyExecection.copyexecutionListener);
}
 
Example #4
Source File: DynamicInitializer.java    From e4macs with Eclipse Public License 1.0 4 votes vote down vote up
public MinderBinder(String commandId, String contextId, String keyString, IExecutionListener enhancer) {
	this.commandId = commandId;
	this.contextId = contextId;
	this.keyString = keyString;
	this.enhancer = enhancer;
}
 
Example #5
Source File: DynamicInitializer.java    From e4macs with Eclipse Public License 1.0 4 votes vote down vote up
public IExecutionListener getEnhancer() {
	return enhancer;
}