All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.api.tasks.scala.ScalaDoc Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.gradle.api.tasks.scala;

import org.gradle.api.file.FileCollection;
import org.gradle.api.internal.project.IsolatedAntBuilder;
import org.gradle.api.internal.tasks.scala.AntScalaDoc;
import org.gradle.api.tasks.Classpath;
import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.Nested;
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.OutputDirectory;
import org.gradle.api.tasks.SourceTask;
import org.gradle.api.tasks.TaskAction;
import org.gradle.util.GUtil;

import javax.inject.Inject;
import java.io.File;

/**
 * Generates HTML API documentation for Scala source files.
 */
public class ScalaDoc extends SourceTask {

    private File destinationDir;

    private FileCollection classpath;
    private FileCollection scalaClasspath;
    private ScalaDocOptions scalaDocOptions = new ScalaDocOptions();
    private String title;

    @Inject
    protected IsolatedAntBuilder getAntBuilder() {
        throw new UnsupportedOperationException();
    }

    /**
     * Returns the directory to generate the API documentation into.
     */
    @OutputDirectory
    public File getDestinationDir() {
        return destinationDir;
    }

    public void setDestinationDir(File destinationDir) {
        this.destinationDir = destinationDir;
    }

    /**
     * 

Returns the classpath to use to locate classes referenced by the documented source.

* * @return The classpath. */ @Classpath public FileCollection getClasspath() { return classpath; } public void setClasspath(FileCollection classpath) { this.classpath = classpath; } /** * Returns the classpath to use to load the ScalaDoc tool. */ @Classpath public FileCollection getScalaClasspath() { return scalaClasspath; } public void setScalaClasspath(FileCollection scalaClasspath) { this.scalaClasspath = scalaClasspath; } /** * Returns the ScalaDoc generation options. */ @Nested public ScalaDocOptions getScalaDocOptions() { return scalaDocOptions; } public void setScalaDocOptions(ScalaDocOptions scalaDocOptions) { this.scalaDocOptions = scalaDocOptions; } /** * Returns the documentation title. */ @Input @Optional public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } @TaskAction protected void generate() { ScalaDocOptions options = getScalaDocOptions(); if (!GUtil.isTrue(options.getDocTitle())) { options.setDocTitle(getTitle()); } AntScalaDoc antScalaDoc = new AntScalaDoc(getAntBuilder()); antScalaDoc.execute(getSource(), getDestinationDir(), getClasspath(), getScalaClasspath(), options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy