本文整理了Java中org.apache.tools.ant.taskdefs.Javac.setSource()
方法的一些代码示例,展示了Javac.setSource()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Javac.setSource()
方法的具体详情如下:
包路径:org.apache.tools.ant.taskdefs.Javac
类名称:Javac
方法名:setSource
[英]Value of the -source command-line switch; will be ignored by all implementations except modern, jikes and gcj (gcj uses -fsource).
If you use this attribute together with jikes or gcj, you must make sure that your version of jikes supports the -source switch.
Legal values are 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, and any integral number bigger than 4 - by default, no -source argument will be used at all.
[中]源命令行开关的值;将被除modern、jikes和gcj(gcj使用-fsource)之外的所有实现忽略。
如果将此属性与jikes或gcj一起使用,则必须确保jikes版本支持-source开关。
合法值为1.3、1.4、1.5、1.6、1.7、1.8、1.9,以及任何大于4的整数-默认情况下,将根本不使用源参数。
代码示例来源:origin: org.apache.xmlbeans/xmlbeans
if (javasource != null)
javac.setSource(javasource);
javac.setTarget(javasource);
javac.setSource("1.4");
javac.setTarget("1.4");
代码示例来源:origin: org.bluestemsoftware.open.maven.tparty/jsp-2.1
public void setSourceVM(String sourceVM) {
javac.setSource(sourceVM);
info.append(" compilerSourceVM=" + sourceVM + "\n");
}
代码示例来源:origin: org.tinygroup/org.tinygroup.jspengine
public void setSourceVM(String sourceVM) {
javac.setSource(sourceVM);
info.append(" compilerSourceVM=" + sourceVM + "\n");
}
代码示例来源:origin: org.codehaus.castor/castor-testsuite-xml-framework
compiler.setSource(_javaVersion);
代码示例来源:origin: org.apache.xmlbeans/com.springsource.org.apache.xmlbeans
if (javasource != null)
javac.setSource(javasource);
javac.setTarget(javasource);
javac.setSource("1.4");
javac.setTarget("1.4");
代码示例来源:origin: com.github.pjfanning/xmlbeans
if (javasource != null)
javac.setSource(javasource);
javac.setTarget(javasource);
javac.setSource("1.4");
javac.setTarget("1.4");
代码示例来源:origin: org.apache.geronimo.ext.tomcat/jasper
javac.setSource(options.getCompilerSourceVM());
info.append(" compilerSourceVM=" + options.getCompilerSourceVM() + "\n");
代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7
javac.setSource(options.getCompilerSourceVM());
info.append(" compilerSourceVM=" + options.getCompilerSourceVM() + "\n");
代码示例来源:origin: org.apache.tomcat/tomcat-jasper
javac.setSource(options.getCompilerSourceVM());
info.append(" compilerSourceVM=" + options.getCompilerSourceVM() + "\n");
代码示例来源:origin: codefollower/Tomcat-Research
javac.setSource(options.getCompilerSourceVM());
info.append(" compilerSourceVM=" + options.getCompilerSourceVM() + "\n");
代码示例来源:origin: martinpaljak/ant-javacard
j.setSource(javaVersion);
if (jckit.isVersion(JavaCardSDK.Version.V21)) {
内容来源于网络,如有侵权,请联系作者删除!