public interface DocumentationEntity
Describes properties project documentation documentation.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
setEntryPoint(String ep)Sets the entrypoint for a set of internal documentation |
|
public void |
setEntryPoint(Provider<String> ep)Sets the entrypoint in a lazy way. |
|
public void |
setSection(String section)Set a different section for the documentation set. |
|
public void |
setTitleProvider(java.util.concurrent.Callable<String> title)Sets the method that will provide a title for the specific set of internal documentation. |
|
public void |
setTitleProvider(Provider<String> title)Sets the method that will provide a title for the specific set of internal documentation. |
Sets the entrypoint for a set of internal documentation
ep - Entrypoint relative path. Could be something as simple as index.htmlSets the entrypoint in a lazy way.
ep - Provider to an entrypointSet a different section for the documentation set.
section - Section nameSets the method that will provide a title for the specific set of internal documentation.
title - Title provider.