当前位置: 首页>>代码示例>>Java>>正文


Java IJarExportRunnable类代码示例

本文整理汇总了Java中org.eclipse.jdt.ui.jarpackager.IJarExportRunnable的典型用法代码示例。如果您正苦于以下问题:Java IJarExportRunnable类的具体用法?Java IJarExportRunnable怎么用?Java IJarExportRunnable使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


IJarExportRunnable类属于org.eclipse.jdt.ui.jarpackager包,在下文中一共展示了IJarExportRunnable类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: export

import org.eclipse.jdt.ui.jarpackager.IJarExportRunnable; //导入依赖的package包/类
private IStatus export(JarPackageData[] jarPackages) {
	Shell shell= getShell();
	IJarExportRunnable op= jarPackages[0].createJarExportRunnable(jarPackages, shell);
	try {
		PlatformUI.getWorkbench().getActiveWorkbenchWindow().run(false, true, op);
		//PlatformUI.getWorkbench().getProgressService().run(false, true, op); // see bug 118152
	} catch (InvocationTargetException ex) {
		if (ex.getTargetException() != null) {
			ExceptionHandler.handle(ex, shell, JarPackagerMessages.CreateJarActionDelegate_jarExportError_title, JarPackagerMessages.CreateJarActionDelegate_jarExportError_message);
			return null;
		}
	} catch (InterruptedException e) {
		// do nothing on cancel
		return null;
	}
	return op.getStatus();
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:18,代码来源:CreateJarActionDelegate.java

示例2: executeExportOperation

import org.eclipse.jdt.ui.jarpackager.IJarExportRunnable; //导入依赖的package包/类
/**
 * Exports the JAR package.
 *
 * @param op the op
 * @return a boolean indicating success or failure
 */
protected boolean executeExportOperation(IJarExportRunnable op) {
	try {
		getContainer().run(true, true, op);
	} catch (InterruptedException e) {
		return false;
	} catch (InvocationTargetException ex) {
		if (ex.getTargetException() != null) {
			ExceptionHandler.handle(ex, getShell(), JarPackagerMessages.JarPackageWizard_jarExportError_title, JarPackagerMessages.JarPackageWizard_jarExportError_message);
			return false;
		}
	}
	IStatus status= op.getStatus();
	if (!status.isOK()) {
		ErrorDialog.openError(getShell(), JarPackagerMessages.JarPackageWizard_jarExport_title, null, status);
		return !(status.matches(IStatus.ERROR));
	}
	return true;
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:25,代码来源:JarPackageWizard.java

示例3: run

import org.eclipse.jdt.ui.jarpackager.IJarExportRunnable; //导入依赖的package包/类
/**
 * Creates a JAR file containing the given resource (Java class with
 * main()) and all associated resources
 * 
 * @param resource the resource
 * @return a file designing the created package
 */
public void run(IProgressMonitor monitor) {

  log.fine("Build jar");
  JarPackageData jarrer = new JarPackageData();

  jarrer.setExportJavaFiles(true);
  jarrer.setExportClassFiles(true);
  jarrer.setExportOutputFolders(true);
  jarrer.setOverwrite(true);

  try {
    // IJavaProject project =
    // (IJavaProject) resource.getProject().getNature(JavaCore.NATURE_ID);

    // check this is the case before letting this method get called
    Object element = resource.getAdapter(IJavaElement.class);
    IType type = ((ICompilationUnit) element).findPrimaryType();
    jarrer.setManifestMainClass(type);

    // Create a temporary JAR file name
    File baseDir = Activator.getDefault().getStateLocation().toFile();

    String prefix =
        String.format("%s_%s-", resource.getProject().getName(), resource
            .getName());
    File jarFile = File.createTempFile(prefix, ".jar", baseDir);
    jarrer.setJarLocation(new Path(jarFile.getAbsolutePath()));

    jarrer.setElements(resource.getProject().members(IResource.FILE));
    IJarExportRunnable runnable =
        jarrer.createJarExportRunnable(Display.getDefault()
            .getActiveShell());
    runnable.run(monitor);

    this.jarFile = jarFile;

  } catch (Exception e) {
    e.printStackTrace();
    throw new RuntimeException(e);
  }
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:49,代码来源:JarModule.java


注:本文中的org.eclipse.jdt.ui.jarpackager.IJarExportRunnable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。