Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CustomizableHtmlReport (0.39 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/CustomizableHtmlReport.java

    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.Optional;
    
    import javax.annotation.Nullable;
    
    /**
     * A HTML Report whose generation can be customized with a XSLT stylesheet.
     */
    public interface CustomizableHtmlReport extends SingleFileReport {
    
        /**
         * The stylesheet to use to generate the HTML report.
         *
         * @return the stylesheet to use to generate the HTML report
         */
        @Nullable
        @Optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.CustomizableHtmlReport.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 516 bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-text-resource.txt

    Method <org.gradle.api.plugins.quality.PmdExtension.getRuleSetConfig()> has raw return type org.gradle.api.resources.TextResource in (PmdExtension.java:0)
    Method <org.gradle.api.reporting.CustomizableHtmlReport.getStylesheet()> has raw return type org.gradle.api.resources.TextResource in (CustomizableHtmlReport.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 827 bytes
    - Viewed (0)
  4. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/CustomizableHtmlReportImpl.java

    package org.gradle.api.reporting.internal;
    
    import org.gradle.api.Task;
    import org.gradle.api.reporting.CustomizableHtmlReport;
    import org.gradle.api.resources.TextResource;
    
    import javax.annotation.Nullable;
    
    public abstract class CustomizableHtmlReportImpl extends TaskGeneratedSingleFileReport implements CustomizableHtmlReport {
    
        private TextResource stylesheet;
    
        public CustomizableHtmlReportImpl(String name, Task task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleReportsImpl.java

            add(TaskGeneratedSingleFileReport.class, "xml", task);
            add(TaskGeneratedSingleFileReport.class, "sarif", task);
        }
    
        @Override
        public CustomizableHtmlReport getHtml() {
            return withType(CustomizableHtmlReport.class).getByName("html");
        }
    
        @Override
        public SingleFileReport getXml() {
            return getByName("xml");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstyleReports.java

     * limitations under the License.
     */
    
    package org.gradle.api.plugins.quality;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.reporting.CustomizableHtmlReport;
    import org.gradle.api.reporting.ReportContainer;
    import org.gradle.api.reporting.SingleFileReport;
    import org.gradle.api.tasks.Internal;
    
    /**
     * The reporting configuration for the {@link Checkstyle} task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/dsl.xml

            <para>Listed below are some of the types which are used when generating reports:</para>
            <table>
                <title>Reporting types</title>
                <tr>
                    <td>org.gradle.api.reporting.CustomizableHtmlReport</td>
                </tr>
                <tr>
                    <td>org.gradle.api.reporting.SingleFileReport</td>
                </tr>
                <tr>
                    <td>org.gradle.api.reporting.DirectoryReport</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Thus, make sure to check whether your build behaves as expected after upgrading.
     * The `html` property on `CheckstyleReport` and `FindBugsReport` now returns a link:{groovyDslPath}/org.gradle.api.reporting.CustomizableHtmlReport.html[`CustomizableHtmlReport`] instance that is easier to configure from statically typed languages like Java and Kotlin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top