Align "compact" Javadocs more sanely.
This commit is contained in:
@@ -40,29 +40,29 @@ public class Mustache
|
|||||||
public final boolean strictSections;
|
public final boolean strictSections;
|
||||||
|
|
||||||
/** A value to use when a variable resolves to null. If this value is null (which is the
|
/** A value to use when a variable resolves to null. If this value is null (which is the
|
||||||
* default null value), an exception will be thrown. If {@link #missingIsNull} is also
|
* default null value), an exception will be thrown. If {@link #missingIsNull} is also
|
||||||
* true, this value will be used when a variable cannot be resolved.
|
* true, this value will be used when a variable cannot be resolved.
|
||||||
*
|
*
|
||||||
* <p>If the nullValue contains a substring {@code {{name}}}, then this substring will be
|
* <p>If the nullValue contains a substring {@code {{name}}}, then this substring will be
|
||||||
* replaced by name of the variable. For example, if nullValue is {@code ?{{name}}?} and
|
* replaced by name of the variable. For example, if nullValue is {@code ?{{name}}?} and
|
||||||
* the missing variable is {@code foo}, then string {@code ?foo?} will be used.</p> */
|
* the missing variable is {@code foo}, then string {@code ?foo?} will be used.</p> */
|
||||||
public final String nullValue;
|
public final String nullValue;
|
||||||
|
|
||||||
/** If this value is true, missing variables will be treated like variables that return
|
/** If this value is true, missing variables will be treated like variables that return
|
||||||
* null. {@link #nullValue} will be used in their place, assuming {@link #nullValue} is
|
* null. {@link #nullValue} will be used in their place, assuming {@link #nullValue} is
|
||||||
* configured to a non-null value. */
|
* configured to a non-null value. */
|
||||||
public final boolean missingIsNull;
|
public final boolean missingIsNull;
|
||||||
|
|
||||||
/** If this value is true, empty string will be treated as a false value, as in JavaScript
|
/** If this value is true, empty string will be treated as a false value, as in JavaScript
|
||||||
* mustache implementation. Default is false. */
|
* mustache implementation. Default is false. */
|
||||||
public final boolean emptyStringIsFalse;
|
public final boolean emptyStringIsFalse;
|
||||||
|
|
||||||
/** If this value is true, zero will be treated as a false value, as in JavaScript
|
/** If this value is true, zero will be treated as a false value, as in JavaScript
|
||||||
* mustache implementation. Default is false. */
|
* mustache implementation. Default is false. */
|
||||||
public final boolean zeroIsFalse;
|
public final boolean zeroIsFalse;
|
||||||
|
|
||||||
/** Handles converting objects to strings when rendering a template. The default formatter
|
/** Handles converting objects to strings when rendering a template. The default formatter
|
||||||
* uses {@link String#valueOf}. */
|
* uses {@link String#valueOf}. */
|
||||||
public final Formatter formatter;
|
public final Formatter formatter;
|
||||||
|
|
||||||
/** Handles escaping characters in substituted text. */
|
/** Handles escaping characters in substituted text. */
|
||||||
@@ -88,14 +88,14 @@ public class Mustache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a compiler that either does or does not escape HTML by default. Note: this
|
/** Returns a compiler that either does or does not escape HTML by default. Note: this
|
||||||
* overrides any escaper set via {@link #withEscaper}. */
|
* overrides any escaper set via {@link #withEscaper}. */
|
||||||
public Compiler escapeHTML (boolean escapeHTML) {
|
public Compiler escapeHTML (boolean escapeHTML) {
|
||||||
return withEscaper(escapeHTML ? Escapers.HTML : Escapers.NONE);
|
return withEscaper(escapeHTML ? Escapers.HTML : Escapers.NONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a compiler that either does or does not use standards mode. Standards mode
|
/** Returns a compiler that either does or does not use standards mode. Standards mode
|
||||||
* disables the non-standard JMustache extensions like looking up missing names in a parent
|
* disables the non-standard JMustache extensions like looking up missing names in a parent
|
||||||
* context. */
|
* context. */
|
||||||
public Compiler standardsMode (boolean standardsMode) {
|
public Compiler standardsMode (boolean standardsMode) {
|
||||||
return new Compiler(standardsMode, this.strictSections, this.nullValue,
|
return new Compiler(standardsMode, this.strictSections, this.nullValue,
|
||||||
this.missingIsNull, this.emptyStringIsFalse, this.zeroIsFalse,
|
this.missingIsNull, this.emptyStringIsFalse, this.zeroIsFalse,
|
||||||
@@ -104,8 +104,8 @@ public class Mustache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a compiler that throws an exception when a section references a missing value
|
/** Returns a compiler that throws an exception when a section references a missing value
|
||||||
* ({@code true}) or treats a missing value as {@code false} ({@code false}, the default).
|
* ({@code true}) or treats a missing value as {@code false} ({@code false}, the default).
|
||||||
*/
|
*/
|
||||||
public Compiler strictSections (boolean strictSections) {
|
public Compiler strictSections (boolean strictSections) {
|
||||||
return new Compiler(this.standardsMode, strictSections, this.nullValue,
|
return new Compiler(this.standardsMode, strictSections, this.nullValue,
|
||||||
this.missingIsNull, this.emptyStringIsFalse, this.zeroIsFalse,
|
this.missingIsNull, this.emptyStringIsFalse, this.zeroIsFalse,
|
||||||
@@ -114,8 +114,8 @@ public class Mustache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a compiler that will use the given value for any variable that is missing, or
|
/** Returns a compiler that will use the given value for any variable that is missing, or
|
||||||
* otherwise resolves to null. This is like {@link #nullValue} except that it returns the
|
* otherwise resolves to null. This is like {@link #nullValue} except that it returns the
|
||||||
* supplied default for missing keys and existing keys that return null values. */
|
* supplied default for missing keys and existing keys that return null values. */
|
||||||
public Compiler defaultValue (String defaultValue) {
|
public Compiler defaultValue (String defaultValue) {
|
||||||
return new Compiler(this.standardsMode, this.strictSections, defaultValue, true,
|
return new Compiler(this.standardsMode, this.strictSections, defaultValue, true,
|
||||||
this.emptyStringIsFalse, this.zeroIsFalse, this.formatter,
|
this.emptyStringIsFalse, this.zeroIsFalse, this.formatter,
|
||||||
@@ -123,16 +123,16 @@ public class Mustache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a compiler that will use the given value for any variable that resolves to
|
/** Returns a compiler that will use the given value for any variable that resolves to
|
||||||
* null, but will still raise an exception for variables for which an accessor cannot be
|
* null, but will still raise an exception for variables for which an accessor cannot be
|
||||||
* found. This is like {@link #defaultValue} except that it differentiates between missing
|
* found. This is like {@link #defaultValue} except that it differentiates between missing
|
||||||
* accessors, and accessors that exist but return null.
|
* accessors, and accessors that exist but return null.
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>In the case of a Java object being used as a context, if no field or method can be
|
* <li>In the case of a Java object being used as a context, if no field or method can be
|
||||||
* found for a variable, an exception will be raised.</li>
|
* found for a variable, an exception will be raised.</li>
|
||||||
* <li>In the case of a {@link Map} being used as a context, if the map does not contain
|
* <li>In the case of a {@link Map} being used as a context, if the map does not contain
|
||||||
* a mapping for a variable, an exception will be raised. If the map contains a mapping
|
* a mapping for a variable, an exception will be raised. If the map contains a mapping
|
||||||
* which maps to {@code null}, then {@code nullValue} is used.</li>
|
* which maps to {@code null}, then {@code nullValue} is used.</li>
|
||||||
* </ul> */
|
* </ul> */
|
||||||
public Compiler nullValue (String nullValue) {
|
public Compiler nullValue (String nullValue) {
|
||||||
return new Compiler(this.standardsMode, this.strictSections, nullValue, false,
|
return new Compiler(this.standardsMode, this.strictSections, nullValue, false,
|
||||||
this.emptyStringIsFalse, this.zeroIsFalse, this.formatter,
|
this.emptyStringIsFalse, this.zeroIsFalse, this.formatter,
|
||||||
@@ -184,8 +184,8 @@ public class Mustache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a compiler configured to use the supplied delims as default delimiters.
|
/** Returns a compiler configured to use the supplied delims as default delimiters.
|
||||||
* @param delims a string of the form {@code AB CD} or {@code A D} where A and B are
|
* @param delims a string of the form {@code AB CD} or {@code A D} where A and B are
|
||||||
* opening delims and C and D are closing delims. */
|
* opening delims and C and D are closing delims. */
|
||||||
public Compiler withDelims (String delims) {
|
public Compiler withDelims (String delims) {
|
||||||
return new Compiler(this.standardsMode, this.strictSections, this.nullValue,
|
return new Compiler(this.standardsMode, this.strictSections, this.nullValue,
|
||||||
this.missingIsNull, this.emptyStringIsFalse, this.zeroIsFalse,
|
this.missingIsNull, this.emptyStringIsFalse, this.zeroIsFalse,
|
||||||
@@ -194,17 +194,17 @@ public class Mustache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the value to use in the template for the null-valued property {@code name}. See
|
/** Returns the value to use in the template for the null-valued property {@code name}. See
|
||||||
* {@link #nullValue} for more details. */
|
* {@link #nullValue} for more details. */
|
||||||
public String computeNullValue (String name) {
|
public String computeNullValue (String name) {
|
||||||
return (nullValue == null) ? null : nullValue.replace("{{name}}", name);
|
return (nullValue == null) ? null : nullValue.replace("{{name}}", name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns true if the supplied value is "falsey". If {@link #emptyStringIsFalse} is true,
|
/** Returns true if the supplied value is "falsey". If {@link #emptyStringIsFalse} is true,
|
||||||
* then empty strings are considered falsey. If {@link #zeroIsFalse} is true, then zero
|
* then empty strings are considered falsey. If {@link #zeroIsFalse} is true, then zero
|
||||||
* values are considered falsey. */
|
* values are considered falsey. */
|
||||||
public boolean isFalsey (Object value) {
|
public boolean isFalsey (Object value) {
|
||||||
return (emptyStringIsFalse && "".equals(value)) ||
|
return (emptyStringIsFalse && "".equals(value)) ||
|
||||||
(zeroIsFalse && (value instanceof Number) && ((Number)value).longValue() == 0);
|
(zeroIsFalse && (value instanceof Number) && ((Number)value).longValue() == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Compiler (boolean standardsMode, boolean strictSections, String nullValue,
|
protected Compiler (boolean standardsMode, boolean strictSections, String nullValue,
|
||||||
@@ -236,11 +236,11 @@ public class Mustache
|
|||||||
public interface Lambda
|
public interface Lambda
|
||||||
{
|
{
|
||||||
/** Executes this lambda on the supplied template fragment. The lambda should write its
|
/** Executes this lambda on the supplied template fragment. The lambda should write its
|
||||||
* results to {@code out}.
|
* results to {@code out}.
|
||||||
*
|
*
|
||||||
* @param frag the fragment of the template that was passed to the lambda.
|
* @param frag the fragment of the template that was passed to the lambda.
|
||||||
* @param out the writer to which the lambda should write its output.
|
* @param out the writer to which the lambda should write its output.
|
||||||
*/
|
*/
|
||||||
void execute (Template.Fragment frag, Writer out) throws IOException;
|
void execute (Template.Fragment frag, Writer out) throws IOException;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -248,11 +248,11 @@ public class Mustache
|
|||||||
public interface InvertibleLambda extends Lambda
|
public interface InvertibleLambda extends Lambda
|
||||||
{
|
{
|
||||||
/** Executes this lambda on the supplied template fragment, when the lambda is used in an
|
/** Executes this lambda on the supplied template fragment, when the lambda is used in an
|
||||||
* inverse section. The lambda should write its results to {@code out}.
|
* inverse section. The lambda should write its results to {@code out}.
|
||||||
*
|
*
|
||||||
* @param frag the fragment of the template that was passed to the lambda.
|
* @param frag the fragment of the template that was passed to the lambda.
|
||||||
* @param out the writer to which the lambda should write its output.
|
* @param out the writer to which the lambda should write its output.
|
||||||
*/
|
*/
|
||||||
void executeInverse (Template.Fragment frag, Writer out) throws IOException;
|
void executeInverse (Template.Fragment frag, Writer out) throws IOException;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -274,8 +274,8 @@ public class Mustache
|
|||||||
public interface TemplateLoader
|
public interface TemplateLoader
|
||||||
{
|
{
|
||||||
/** Returns a reader for the template with the supplied name.
|
/** Returns a reader for the template with the supplied name.
|
||||||
* Reader will be closed by callee.
|
* Reader will be closed by callee.
|
||||||
* @throws Exception if the template could not be loaded for any reason. */
|
* @throws Exception if the template could not be loaded for any reason. */
|
||||||
Reader getTemplate (String name) throws Exception;
|
Reader getTemplate (String name) throws Exception;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -283,17 +283,17 @@ public class Mustache
|
|||||||
public interface Collector
|
public interface Collector
|
||||||
{
|
{
|
||||||
/** Returns an iterator that can iterate over the supplied value, or null if the value is
|
/** Returns an iterator that can iterate over the supplied value, or null if the value is
|
||||||
* not a collection. */
|
* not a collection. */
|
||||||
Iterator<?> toIterator (final Object value);
|
Iterator<?> toIterator (final Object value);
|
||||||
|
|
||||||
/** Creates a fetcher for a so-named variable in the supplied context object, which will
|
/** Creates a fetcher for a so-named variable in the supplied context object, which will
|
||||||
* never be null. The fetcher will be cached and reused for future contexts for which
|
* never be null. The fetcher will be cached and reused for future contexts for which
|
||||||
* {@code octx.getClass().equals(nctx.getClass()}. */
|
* {@code octx.getClass().equals(nctx.getClass()}. */
|
||||||
VariableFetcher createFetcher (Object ctx, String name);
|
VariableFetcher createFetcher (Object ctx, String name);
|
||||||
|
|
||||||
/** Creates a map to be used to cache {@link VariableFetcher} instances. The GWT-compatible
|
/** Creates a map to be used to cache {@link VariableFetcher} instances. The GWT-compatible
|
||||||
* collector returns a HashMap here, but the reflection based fetcher (which only works on
|
* collector returns a HashMap here, but the reflection based fetcher (which only works on
|
||||||
* the JVM and Android, returns a concurrent hashmap. */
|
* the JVM and Android, returns a concurrent hashmap. */
|
||||||
<K,V> Map<K,V> createFetcherCache ();
|
<K,V> Map<K,V> createFetcherCache ();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -362,8 +362,7 @@ public class Mustache
|
|||||||
|
|
||||||
// TODO: this method was never called, what was my intention here?
|
// TODO: this method was never called, what was my intention here?
|
||||||
protected static boolean allowsWhitespace (char typeChar) {
|
protected static boolean allowsWhitespace (char typeChar) {
|
||||||
return (typeChar == '=') || // change delimiters
|
return (typeChar == '=' /* change delimiters */) || (typeChar == '!' /* comment */);
|
||||||
(typeChar == '!'); // comment
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static final int TEXT = 0;
|
protected static final int TEXT = 0;
|
||||||
|
|||||||
@@ -41,16 +41,16 @@ public class Template
|
|||||||
*/
|
*/
|
||||||
public abstract class Fragment {
|
public abstract class Fragment {
|
||||||
/** Returns the context object in effect for this fragment. The actual type of the object
|
/** Returns the context object in effect for this fragment. The actual type of the object
|
||||||
* depends on the structure of the data passed to the top-level template. You know where
|
* depends on the structure of the data passed to the top-level template. You know where
|
||||||
* your lambdas are executed, so you know what type to which to cast the context in order
|
* your lambdas are executed, so you know what type to which to cast the context in order
|
||||||
* to inspect it (be that a {@code Map} or a POJO or something else). */
|
* to inspect it (be that a {@code Map} or a POJO or something else). */
|
||||||
public abstract Object context ();
|
public abstract Object context ();
|
||||||
|
|
||||||
/** Executes this fragment; writes its result to {@code out}. */
|
/** Executes this fragment; writes its result to {@code out}. */
|
||||||
public abstract void execute (Writer out);
|
public abstract void execute (Writer out);
|
||||||
|
|
||||||
/** Executes this fragment with the provided context; writes its result to {@code out}. The
|
/** Executes this fragment with the provided context; writes its result to {@code out}. The
|
||||||
* provided context will be nested in the fragment's bound context. */
|
* provided context will be nested in the fragment's bound context. */
|
||||||
public abstract void execute (Object context, Writer out);
|
public abstract void execute (Object context, Writer out);
|
||||||
|
|
||||||
/** Executes this fragment and returns its result as a string. */
|
/** Executes this fragment and returns its result as a string. */
|
||||||
@@ -61,7 +61,7 @@ public class Template
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Executes this fragment with the provided context; returns its result as a string. The
|
/** Executes this fragment with the provided context; returns its result as a string. The
|
||||||
* provided context will be nested in the fragment's bound context. */
|
* provided context will be nested in the fragment's bound context. */
|
||||||
public String execute (Object context) {
|
public String execute (Object context) {
|
||||||
StringWriter out = new StringWriter();
|
StringWriter out = new StringWriter();
|
||||||
execute(context, out);
|
execute(context, out);
|
||||||
@@ -70,7 +70,7 @@ public class Template
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** A sentinel object that can be returned by a {@link Mustache.Collector} to indicate that a
|
/** A sentinel object that can be returned by a {@link Mustache.Collector} to indicate that a
|
||||||
* variable does not exist in a particular context. */
|
* variable does not exist in a particular context. */
|
||||||
public static final Object NO_FETCHER_FOUND = new Object();
|
public static final Object NO_FETCHER_FOUND = new Object();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user