Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kotlinDslReference (0.07 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/KotlinDslReference.java

    package gradlebuild.docs;
    
    import org.gradle.api.file.DirectoryProperty;
    import org.gradle.api.provider.Property;
    
    /**
     * Configuration for generating Dokka based Kotlin DSL docs.
     */
    public abstract class KotlinDslReference {
    
        /**
         * The location of the final rendered Dokka content.
         */
        public abstract DirectoryProperty getRenderedDocumentation();
    
        /**
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Jan 15 14:00:14 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

        public void javadocs(Action<? super Javadocs> action) {
            action.execute(javadocs);
        }
    
        public KotlinDslReference getKotlinDslReference() {
            return kotlinDslReference;
        }
    
        public void kotlinDslReference(Action<? super KotlinDslReference> action) {
            action.execute(kotlinDslReference);
        }
    
        /**
         * This property is wired into very slow documentation generation tasks.
         *
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Aug 20 14:11:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top