本文整理了Java中org.apache.tools.ant.taskdefs.Javac.getDestdir()
方法的一些代码示例,展示了Javac.getDestdir()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Javac.getDestdir()
方法的具体详情如下:
包路径:org.apache.tools.ant.taskdefs.Javac
类名称:Javac
方法名:getDestdir
[英]Gets the destination directory into which the java source files should be compiled.
[中]获取java源文件应编译到的目标目录。
代码示例来源:origin: org.apache.ant/ant
this.attributes = attributes;
src = attributes.getSrcdir();
destDir = attributes.getDestdir();
encoding = attributes.getEncoding();
debug = attributes.getDebug();
代码示例来源:origin: org.eclipse.platform/org.eclipse.ant.ui
public IJavaProject createJavaProjectFromJavacNode(String projectName, Javac javacTask, IProgressMonitor monitor) throws CoreException {
try {
IJavaProject javaProject = createJavaProject(projectName, monitor);
File destDir = javacTask.getDestdir();
String destDirName = destDir == null ? null : destDir.getName();
org.apache.tools.ant.types.Path sourceDirs = javacTask.getSrcdir();
createSourceDirectories(destDir, destDirName, sourceDirs, javaProject, monitor);
// add rt.jar
addVariableEntry(javaProject, new Path(JavaRuntime.JRELIB_VARIABLE), new Path(JavaRuntime.JRESRC_VARIABLE), new Path(JavaRuntime.JRESRCROOT_VARIABLE), monitor);
setClasspath(javacTask, javaProject, monitor);
javaProject.getProject().refreshLocal(IResource.DEPTH_INFINITE, monitor);
return javaProject;
}
catch (BuildException be) {
IStatus status = new Status(IStatus.ERROR, AntUIPlugin.PI_ANTUI, IStatus.OK, be.getLocalizedMessage(), be);
throw new CoreException(status);
}
}
代码示例来源:origin: stackoverflow.com
fbtask.setAuxClasspath(task.getClasspath());
Path destPath = new Path( task.getProject() );
destPath.setPath(task.getDestdir().getAbsolutePath());
fbtask.setAuxAnalyzepath(destPath);
fbtask.setOutputFile(getFileName(task.getProject()));
内容来源于网络,如有侵权,请联系作者删除!