Interface DocumentationEntity
public interface DocumentationEntity
Describes properties project documentation documentation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetEntryPoint(String ep) Sets the entrypoint for a set of internal documentationvoidsetEntryPoint(org.gradle.api.provider.Provider<String> ep) Sets the entrypoint in a lazy way.voidsetSection(String section) Set a different section for the documentation set.voidsetTitleProvider(Callable<String> title) Sets the method that will provide a title for the specific set of internal documentation.voidsetTitleProvider(org.gradle.api.provider.Provider<String> title) Sets the method that will provide a title for the specific set of internal documentation.
-
Method Details
-
setEntryPoint
Sets the entrypoint for a set of internal documentation- Parameters:
ep- Entrypoint relative path. Could be something as simple asindex.html
-
setEntryPoint
Sets the entrypoint in a lazy way.- Parameters:
ep- Provider to an entrypoint
-
setTitleProvider
Sets the method that will provide a title for the specific set of internal documentation.- Parameters:
title- Title provider.
-
setTitleProvider
Sets the method that will provide a title for the specific set of internal documentation.- Parameters:
title- Title provider.
-
setSection
Set a different section for the documentation set.- Parameters:
section- Section name
-