Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for doccomment (0.12 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DocComment.java

     * limitations under the License.
     */
    package gradlebuild.docs.dsl.docbook;
    
    import org.w3c.dom.Element;
    
    import java.util.List;
    
    public interface DocComment {
        List<Element> getDocbook();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 772 bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java

                }
                for (MethodMetaData method : methods) {
                    DocComment docComment = javadocConverter.parse(method, listener);
                    MethodDoc methodDoc = new MethodDoc(method, docComment.getDocbook());
                    if (methodDoc.getDescription() == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                try {
                    CommentSource commentSource = new InheritedPropertyCommentSource(propertyMetaData, listener);
                    DocCommentImpl docComment = parse(rawCommentText, ownerClass, commentSource, listener);
                    adjustAccessorComment(docComment);
                    return docComment;
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilderTest.groovy

            _ * property.type >> type
            _ * property.signature >> "$name-signature"
            _ * javadocConverter.parse(property, !null) >> ({[parse("<para>${args.comment ?: 'comment'}</para>")]} as DocComment)
            return property
        }
    
        def propertyDoc(Map<String, ?> args = [:], String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilderTest.groovy

            _ * property.type >> type
            _ * property.signature >> "$name-signature"
            _ * javadocConverter.parse(property, !null) >> ({[parse("<para>${args.comment ?: 'comment'}</para>")]} as DocComment)
            return property
        }
    
        def propertyDoc(Map<String, ?> args = [:], String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 8.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/groovy-hl.xml

      ~ limitations under the License.
      -->
    <highlighters>
        <highlighter type="multiline-comment">
            <start>/**</start>
            <end>*/</end>
            <style>doccomment</style>
        </highlighter>
        <highlighter type="multiline-comment">
            <start>/*</start>
            <end>*/</end>
        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/java-hl.xml

      ~ limitations under the License.
      -->
    <highlighters>
        <highlighter type="multiline-comment">
            <start>/**</start>
            <end>*/</end>
            <style>doccomment</style>
        </highlighter>
        <highlighter type="multiline-comment">
            <start>/*</start>
            <end>*/</end>
        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/kotlin-hl.xml

      ~ limitations under the License.
      -->
    <highlighters>
        <highlighter type="multiline-comment">
            <start>/**</start>
            <end>*/</end>
            <style>doccomment</style>
        </highlighter>
        <highlighter type="multiline-comment">
            <start>/*</start>
            <end>*/</end>
        </highlighter>
        <highlighter type="oneline-comment">//</highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilderTest.groovy

            _ * property.type >> type
            _ * property.signature >> "$name-signature"
            _ * javadocConverter.parse(property, !null) >> ({[parse("<para>${args.comment ?: 'comment'}</para>")]} as DocComment)
            return property
        }
    
        def propertyDoc(Map<String, ?> args = [:], String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

    fun KtFile.ktClassOf(member: CtClass) =
        collectDescendantsOfType<KtClassOrObject> { it.fqName?.asString() == member.name }.singleOrNull()
    
    
    private
    fun KtDeclaration.isDocumentedAsSince(version: String) =
        docComment?.isSince(version) == true
    
    
    private
    fun KDoc.isSince(version: String) =
        text.contains("@since $version")
    
    
    // TODO:kotlin-dsl dedupe with KotlinTypeStrings.primitiveTypeStrings
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top