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

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

源代码1 项目: gama   文件: PerspectiveHelper.java
@Override
public IPerspectiveFactory createFactory() {

	try {
		return new SimulationPerspectiveFactory(
			(IPerspectiveFactory) getConfigElement().createExecutableExtension("class"));
	} catch (final CoreException e) {
		e.printStackTrace();
		throw new RuntimeException(e);
	}
}
 
源代码2 项目: gama   文件: PerspectiveHelper.java
SimulationPerspectiveFactory(final IPerspectiveFactory original) {
	this.original = original;
}
 
 类所在包
 类方法
 同包方法