本文整理汇总了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();
}
示例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;
}
示例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);
}
}