类org.eclipse.ui.IActionDelegate2源码实例Demo

下面列出了怎么用org.eclipse.ui.IActionDelegate2的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: APICloud-Studio   文件: SVNPluginAction.java
public void runWithEvent(Event event) {
	if ((event != null) && (delegate instanceof IActionDelegate2)) {
		((IActionDelegate2)delegate).runWithEvent(this, event);
	} else {
		run();
	}
}
 
源代码2 项目: APICloud-Studio   文件: SVNPluginAction.java
/**
 * Disposes this action.
 */
public void dispose() {
    if (delegate instanceof IActionDelegate2) {
    	((IActionDelegate2)delegate).dispose();
    	delegate = null;
    }
}
 
 类所在包
 类方法
 同包方法