- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 66 for getDescription (0.07 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassDoc.groovy
if (sections.size() < 1) { throw new RuntimeException("Docbook content for $className does not contain a '$title' section.") } return sections[0] } Element getDescription() { if (comment.isEmpty() || comment[0].tagName != 'para') { throw new RuntimeException("Class $className does not have a description paragraph.") } return comment[0] }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.2K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.1K 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 Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDataConfig.java
registerModifiedProperty("createdTime"); this.createdTime = value; } public String getDescription() { checkSpecifiedProperty("description"); return convertEmptyToNull(description); } public void setDescription(String value) { registerModifiedProperty("description"); this.description = value; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
/** * Gets the description of the video. * @return the description */ public String getDescription() { return description; } /** * Sets the description of the video. * @param description the description to set */ public void setDescription(final String description) { this.description = description; } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java
} PropertyDoc propertyDoc = new PropertyDoc(property, javadocConverter.parse(property, listener).getDocbook(), new ArrayList<ExtraAttributeDoc>(additionalValues.values())); if (propertyDoc.getDescription() == null) { throw new RuntimeException(String.format("Docbook content for '%s.%s' does not contain a description paragraph.", classDoc.getName(), propName)); }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileConfig.java
registerModifiedProperty("depth"); this.depth = value; } public String getDescription() { checkSpecifiedProperty("description"); return convertEmptyToNull(description); } public void setDescription(String value) { registerModifiedProperty("description"); this.description = value; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebConfig.java
registerModifiedProperty("depth"); this.depth = value; } public String getDescription() { checkSpecifiedProperty("description"); return convertEmptyToNull(description); } public void setDescription(String value) { registerModifiedProperty("description"); this.description = value; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/DataConfigDbm.java
"createdTime"); setupEpg(_epgMap, et -> ((DataConfig) et).getDescription(), (et, vl) -> ((DataConfig) et).setDescription(DfTypeUtil.toString(vl)), "description"); setupEpg(_epgMap, et -> ((DataConfig) et).getHandlerName(), (et, vl) -> ((DataConfig) et).setHandlerName(DfTypeUtil.toString(vl)),
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
setupEpg(_epgMap, et -> ((FileConfig) et).getDepth(), (et, vl) -> ((FileConfig) et).setDepth(DfTypeUtil.toInteger(vl)), "depth"); setupEpg(_epgMap, et -> ((FileConfig) et).getDescription(), (et, vl) -> ((FileConfig) et).setDescription(DfTypeUtil.toString(vl)), "description"); setupEpg(_epgMap, et -> ((FileConfig) et).getExcludedDocPaths(),
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 18K bytes - Viewed (0)