Exemple #1
0
 @Override
 public File getExtraDir() {
   return linkOptions.getExtraDir();
 }
Exemple #2
0
 public void copyFrom(CompilerOptions other) {
   super.copyFrom(other);
   linkOptions.copyFrom(other);
   localWorkers = other.getLocalWorkers();
 }
Exemple #3
0
 @Override
 public File getDeployDir() {
   return linkOptions.getDeployDir();
 }
Exemple #4
0
 @Override
 public void setWarDir(File outDir) {
   linkOptions.setWarDir(outDir);
 }
Exemple #5
0
 @Override
 @Deprecated
 public void setOutDir(File outDir) {
   linkOptions.setOutDir(outDir);
 }
Exemple #6
0
 @Override
 public void setExtraDir(File extraDir) {
   linkOptions.setExtraDir(extraDir);
 }
Exemple #7
0
 @Override
 public File getWarDir() {
   return linkOptions.getWarDir();
 }
Exemple #8
0
 @Override
 @Deprecated
 public File getOutDir() {
   return linkOptions.getOutDir();
 }