- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for getDescription (0.16 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/DslElementDoc.java
*/ package gradlebuild.docs.dsl.docbook.model; import org.w3c.dom.Element; import java.util.List; public interface DslElementDoc { String getId(); Element getDescription(); List<Element> getComment(); boolean isDeprecated(); boolean isIncubating(); boolean isReplaced(); String getReplacement();
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 949 bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/PropertyDoc.groovy
} boolean isReplaced() { return metaData.replaced } @Override String getReplacement() { return metaData.replacement } Element getDescription() { return comment.find { it.nodeName == 'para' } } List<Element> getComment() { return comment } List<ExtraAttributeDoc> getAdditionalValues() {
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/BlockDoc.groovy
String getName() { return blockMethod.name } boolean isMultiValued() { return multiValued } TypeMetaData getType() { return type } Element getDescription() { return blockMethod.description; } List<Element> getComment() { return blockMethod.comment } boolean isDeprecated() {
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
getName(testCoverage), getDescription(testCoverage), testCoverage, stage, parallelizationMethod, subprojects.map { it.name } ) override fun getName(testCoverage: TestCoverage) = truncateName("${testCoverage.asName()} (${subprojects.joinToString(",") { it.name }})")
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Jun 12 09:50:29 UTC 2024 - 9K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/java/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.java
throw new UnsupportedOperationException(); } @Override public void setPriority(int priority) { throw new UnsupportedOperationException(); } @Override public String getDescription() { return "Reports incorrect usages of integration test fixtures"; } @Override protected Class<?> getAstVisitorClass() { return IntegrationTestFixtureVisitor.class; }
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/MethodDoc.groovy
} boolean isReplaced() { return metaData.replaced } @Override String getReplacement() { return metaData.replacement } Element getDescription() { return comment.find { it.nodeName == 'para' } } List<Element> getComment() { return comment }
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java
td.appendChild(caution); caution.appendChild(document.createTextNode("Incubating")); } td.appendChild(document.importNode(blockDoc.getDescription(), true)); } }
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyTableRenderer.java
td.appendChild(caution); caution.appendChild(document.createTextNode("Replaced")); } td.appendChild(document.importNode(propDoc.getDescription(), true)); } }
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.1K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.kt
override fun setPriority(priority: Int) { throw UnsupportedOperationException() } override fun setName(name: String?) { throw UnsupportedOperationException() } override fun getDescription(): String = "Reports incorrect usages of integration test fixtures" override fun getAstVisitorClass(): Class<*> = IntegrationTestFixtureVisitor::class.java }
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java
DocComment docComment = javadocConverter.parse(method, listener); MethodDoc methodDoc = new MethodDoc(method, docComment.getDocbook()); if (methodDoc.getDescription() == null) { throw new RuntimeException(String.format("Docbook content for '%s %s' does not contain a description paragraph.", classDoc.getName(), method.getSignature())); }
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.2K bytes - Viewed (0)