@OutputDirectory protected File getOutputDirectory() { File destinationDir = getDestinationDir(); if (destinationDir == null) { destinationDir = options.getDestinationDirectory(); } return destinationDir; }
@OutputDirectory public File getOutputDirectory() { if (outputDirectory == null) { return null; } return getProject().file(outputDirectory); }
/** * This method will return the given sdkLocation, in case it is null, we throw * an error * * @return location of the Sdk * @throws Throwable * if the location can't be found */ @OutputDirectory public String getSdkLocation() throws Throwable { sdkLocation = project.findProperty("sdkVersion") == null ? sdkLocation : (String) project.findProperty("sdkVersion"); if (sdkLocation == null || sdkLocation.isEmpty()) { new Throwable("sdkLocation is empty, please check your gradle build file"); } return sdkLocation; }
@OutputDirectory public String getServerLocation() throws Throwable { if (serverLocation == null || serverLocation.isEmpty()) { throw new Throwable("serverLocation is empty, please check your gradle build file"); } return serverLocation; }
@OutputDirectory public File getSourceDir() { return sourceDir; }
@OutputDirectory public File getHeaderDir() { return headerDir; }
@OutputDirectory public File getDestinationDir() { return getProject().file(destinationDir); }
/** * Returns the directory to generate the API documentation into. */ @OutputDirectory public File getDestinationDir() { return destinationDir; }
/** * Include the destination directory as an output, to pick up auxiliary files produced alongside the main output file */ @OutputDirectory public File getDestinationDir() { return getOutputFile().getParentFile(); }
/** * The directory to install files into. */ @OutputDirectory public File getDestinationDir() { return destinationDir; }
/** * The target output directory used for writing the classpath manifest. Defaults to {@code "$buildDir/$task.name"}. */ @OutputDirectory public File getOutputDirectory() { return outputDirectory; }
/** * The location to write TestNG's output. <p> Defaults to the owning test task's location for writing the HTML report. * * @since 1.11 */ @Incubating @OutputDirectory public File getOutputDirectory() { return outputDirectory; }
/** * Returns the directory to write the HTML report to. */ @OutputDirectory public File getDestinationDir() { return destinationDir; }
/** * Returns the root folder for the test results in internal binary format. * * @return the test result directory, containing the test results in binary format. */ @OutputDirectory @Incubating public File getBinResultsDir() { return binResultsDir; }
/** * The directory where object files will be generated. */ @OutputDirectory public File getObjectFileDir() { return objectFileDir; }
/** * The directory where object files will be generated. */ @OutputDirectory public File getOutputDir() { return outputDir; }
@Override public Class<? extends Annotation> getAnnotationType() { return OutputDirectory.class; }
/** * The directory to write the scripts into. */ @OutputDirectory public File getOutputDir() { return outputDir; }
@OutputDirectory public File getGeneratedFileDir() { return generatedFileDir; }
@OutputDirectory public File getOutputDirectory() { TSGeneratorConfig config = getConfig(); return config.getGenDir(); }
@OutputDirectory @Optional @Nullable public File getSourceOutputDir() { return sourceOutputDir; }
@OutputDirectory @Optional @Nullable public File getTextSymbolOutputDir() { return textSymbolOutputDir; }
@OutputDirectory public File getOutputFolder() { return outputFolder; }
@OutputDirectory public File getOutputDir() { return outputDir; }
@OutputDirectory public File getExplodedDir() { return explodedDir; }
@OutputDirectory @Optional public File getOutJsonFile() { return outJsonFile; }
@OutputDirectory public File getOutPatchFolder() { return outPatchFolder; }
@OutputDirectory public File getSdkDir() { return platformConfig.sdkDir(); }
@Override @OutputDirectory public File getStagingDirectory() { return stagingDirectory; }
@OutputDirectory public File getDevAppServerLoggingDir() { return devAppServerLoggingDir; }
@OutputDirectory @Override public File getOutputDirectory() { return outputDirectory; }
@OutputDirectory public File getGeneratedSrcDir() { return generatedSrcDir; }
@OutputDirectory public File getClientLibraryDir() { return clientLibraryDir; }