本文整理汇总了Java中org.eclipse.jdt.ui.jarpackager.JarPackageData.setJarLocation方法的典型用法代码示例。如果您正苦于以下问题:Java JarPackageData.setJarLocation方法的具体用法?Java JarPackageData.setJarLocation怎么用?Java JarPackageData.setJarLocation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jdt.ui.jarpackager.JarPackageData
的用法示例。
在下文中一共展示了JarPackageData.setJarLocation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getJarPackageData
import org.eclipse.jdt.ui.jarpackager.JarPackageData; //导入方法依赖的package包/类
protected JarPackageData getJarPackageData(IPackageFragmentRoot[] roots, IType mainType, IProgressMonitor monitor)
throws CoreException {
String filePath = getTempJarPath(appModule.getLocalModule());
if (filePath == null) {
errorHandler.handleApplicationDeploymentFailure("Failed to create temporary JAR file");
}
IPath location = new Path(filePath);
// Note that if no jar builder is specified in the package data
// then a default one is used internally by the data that does NOT
// package any jar dependencies.
JarPackageData packageData = new JarPackageData();
packageData.setJarLocation(location);
// Don't create a manifest. A repackager should determine if a
// generated
// manifest is necessary
// or use a user-defined manifest.
packageData.setGenerateManifest(false);
// Since user manifest is not used, do not save to manifest (save to
// manifest saves to user defined manifest)
packageData.setSaveManifest(false);
packageData.setManifestMainClass(mainType);
packageData.setElements(roots);
return packageData;
}
示例2: run
import org.eclipse.jdt.ui.jarpackager.JarPackageData; //导入方法依赖的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);
}
}
示例3: xmlReadJarLocation
import org.eclipse.jdt.ui.jarpackager.JarPackageData; //导入方法依赖的package包/类
private void xmlReadJarLocation(JarPackageData jarPackage, Element element) {
if (element.getNodeName().equals(JarPackagerUtil.JAR_EXTENSION))
jarPackage.setJarLocation(Path.fromPortableString(element.getAttribute("path"))); //$NON-NLS-1$
}