public class ConfigContentProvider extends java.lang.Object implements ContentProvider
| Constructor and Description |
|---|
ConfigContentProvider() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Iterable<java.lang.String> |
getContent(java.lang.String path)
Called to get the content of a path pointed to by the specified path.
|
public java.lang.Iterable<java.lang.String> getContent(java.lang.String path)
ContentProviderThis should provide an iterable over the lines of a Markdown document (with the formatting provided by the in-game manual, which is a small subset of "normal" Markdown).
If this provider cannot provide the requested path, it should return null to indicate so, allowing other providers to be queried.
getContent in interface ContentProviderpath - the path to the manual page we're looking for.