// SONETEMPLATEPAGE METHODS
//
+ /**
+ * {@inheritDoc}
+ */
@Override
protected void processTemplate(Request request, TemplateContext templateContext) throws RedirectException {
super.processTemplate(request, templateContext);
* Parses the given query into search phrases. The query is split on
* whitespace while allowing to group words using single or double quotes.
* Isolated phrases starting with a “+” are
- * {@link Phrase.Optionality#REQUIRED}, phrases with a
- * “-” are {@link Phrase.Optionality#FORBIDDEN}.
+ * {@link Phrase.Optionality#REQUIRED}, phrases with a “-” are
+ * {@link Phrase.Optionality#FORBIDDEN}.
*
* @param query
* The query to parse
/**
* Generates a {@link String} from a {@link Post}, concatenating the text of
* the post, the text of all {@link Reply}s, and the name of all
- * {@link Sone}s that have
- * replied.
+ * {@link Sone}s that have replied.
*
* @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
*/
*/
public static class HitConverter<T> implements Converter<Hit<T>, T> {
+ /**
+ * {@inheritDoc}
+ */
@Override
public T convert(Hit<T> input) {
return input.getObject();