Fix broken Javadoc related to < and >

This commit is contained in:
Johnny Lim
2015-10-14 16:49:42 +09:00
committed by Sebastien Deleuze
parent 71e2d8e9de
commit 2defb6555e
24 changed files with 48 additions and 48 deletions

View File

@@ -149,7 +149,7 @@ public abstract class AbstractMultiCheckedElementTag extends AbstractCheckedElem
/**
* Set the HTML element used to enclose the
* '{@code input type="checkbox/radio"}' tag.
* <p>Defaults to an HTML '{@code &lt;span/&gt;}' tag.
* <p>Defaults to an HTML '{@code <span/>}' tag.
*/
public void setElement(String element) {
Assert.hasText(element, "'element' cannot be null or blank");

View File

@@ -72,7 +72,7 @@ public class ErrorsTag extends AbstractHtmlElementBodyTag implements BodyTag {
/**
* Set the HTML element must be used to render the error messages.
* <p>Defaults to an HTML '{@code &lt;span/&gt;}' tag.
* <p>Defaults to an HTML '{@code <span/>}' tag.
*/
public void setElement(String element) {
Assert.hasText(element, "'element' cannot be null or blank");
@@ -88,7 +88,7 @@ public class ErrorsTag extends AbstractHtmlElementBodyTag implements BodyTag {
/**
* Set the delimiter to be used between error messages.
* <p>Defaults to an HTML '{@code &lt;br/&gt;}' tag.
* <p>Defaults to an HTML '{@code <br/>}' tag.
*/
public void setDelimiter(String delimiter) {
this.delimiter = delimiter;
@@ -105,7 +105,7 @@ public class ErrorsTag extends AbstractHtmlElementBodyTag implements BodyTag {
/**
* Get the value for the HTML '{@code id}' attribute.
* <p>Appends '{@code .errors}' to the value returned by {@link #getPropertyPath()}
* or to the model attribute name if the {@code &lt;form:errors/&gt;} tag's
* or to the model attribute name if the {@code <form:errors/>} tag's
* '{@code path}' attribute has been omitted.
* @return the value for the HTML '{@code id}' attribute
* @see #getPropertyPath()

View File

@@ -76,12 +76,12 @@ public class OptionTag extends AbstractHtmlElementBodyTag implements BodyTag {
/**
* The 'value' attribute of the rendered HTML {@code &lt;option&gt;} tag.
* The 'value' attribute of the rendered HTML {@code <option>} tag.
*/
private Object value;
/**
* The text body of the rendered HTML {@code &lt;option&gt;} tag.
* The text body of the rendered HTML {@code <option>} tag.
*/
private String label;
@@ -93,14 +93,14 @@ public class OptionTag extends AbstractHtmlElementBodyTag implements BodyTag {
/**
* Set the 'value' attribute of the rendered HTML {@code &lt;option&gt;} tag.
* Set the 'value' attribute of the rendered HTML {@code <option>} tag.
*/
public void setValue(Object value) {
this.value = value;
}
/**
* Get the 'value' attribute of the rendered HTML {@code &lt;option&gt;} tag.
* Get the 'value' attribute of the rendered HTML {@code <option>} tag.
*/
protected Object getValue() {
return this.value;
@@ -121,7 +121,7 @@ public class OptionTag extends AbstractHtmlElementBodyTag implements BodyTag {
}
/**
* Set the text body of the rendered HTML {@code &lt;option&gt;} tag.
* Set the text body of the rendered HTML {@code <option>} tag.
* <p>May be a runtime expression.
*/
public void setLabel(String label) {
@@ -130,7 +130,7 @@ public class OptionTag extends AbstractHtmlElementBodyTag implements BodyTag {
}
/**
* Get the text body of the rendered HTML {@code &lt;option&gt;} tag.
* Get the text body of the rendered HTML {@code <option>} tag.
*/
protected String getLabel() {
return this.label;