aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉamonn McManus <eamonn@mcmanus.net>2018-06-06 14:48:00 -0700
committerÉamonn McManus <eamonn@mcmanus.net>2018-06-06 14:48:00 -0700
commit4bb1d7445fc2f99dbf4371e6f3177b5b1e4c5d60 (patch)
tree36d3d8d04561f3bde058d4ee164ef2418c861a40
parent770c64ca2a769e9bfbdf121cfff5a9b7b6d65e12 (diff)
downloadescapevelocity-4bb1d7445fc2f99dbf4371e6f3177b5b1e4c5d60.tar.gz
Fix a javadoc error and some warnings.
-rw-r--r--src/main/java/com/google/escapevelocity/Template.java25
1 files changed, 18 insertions, 7 deletions
diff --git a/src/main/java/com/google/escapevelocity/Template.java b/src/main/java/com/google/escapevelocity/Template.java
index 1fd0273..0f4de8f 100644
--- a/src/main/java/com/google/escapevelocity/Template.java
+++ b/src/main/java/com/google/escapevelocity/Template.java
@@ -37,7 +37,7 @@ public class Template {
*
* <p>Here is an example that opens nested templates as resources relative to the calling class:
*
- * <pre>
+ * <pre>{@code
* ResourceOpener resourceOpener = resourceName -> {
* InputStream inputStream = getClass().getResource(resourceName);
* if (inputStream == null) {
@@ -45,22 +45,31 @@ public class Template {
* }
* return new BufferedReader(InputStreamReader(inputStream, StandardCharsets.UTF_8));
* };
- * </pre>
+ * }</pre>
*/
@FunctionalInterface
public interface ResourceOpener {
/**
- * Returns a Reader that will be used to read the given resource, then closed.
+ * Returns a {@code Reader} that will be used to read the given resource, then closed.
*
* @param resourceName the name of the resource to be read. This will never be null.
+ * @return a {@code Reader} for the resource.
+ * @throws IOException if the resource cannot be opened.
*/
Reader openResource(String resourceName) throws IOException;
}
/**
- * Parses a VTL template from the given {@code Reader}. The given Reader will be closed on
- * return from this method.
+ * Parses a VTL template from the given {@code Reader}. The template cannot reference other
+ * templates (for example with {@code #parse}). For that, use
+ * {@link #parseFrom(String, ResourceOpener)}.
+ *
+ * @param reader a Reader that will supply the text of the template. It will be closed on return
+ * from this method.
+ * @return an object representing the parsed template.
+ * @throws IOException if there is an exception reading from {@code reader}, or if the template
+ * references another template via {@code #parse}.
*/
public static Template parseFrom(Reader reader) throws IOException {
ResourceOpener resourceOpener = resourceName -> {
@@ -81,8 +90,10 @@ public class Template {
* Parse a VTL template of the given name using the given {@code ResourceOpener}.
*
* @param resourceName name of the resource. May be null.
- * @param resourceOpener used to open included files for {@code #parse} directives in the
- * template.
+ * @param resourceOpener used to open the initial resource and resources referenced by
+ * {@code #parse} directives in the template.
+ * @return an object representing the parsed template.
+ * @throws IOException if there is an exception opening or reading from any resource.
*/
public static Template parseFrom(
String resourceName, ResourceOpener resourceOpener) throws IOException {