Fix broken Javadoc related to < and >
This commit is contained in:
committed by
Sebastien Deleuze
parent
71e2d8e9de
commit
2defb6555e
@@ -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 <span/>}' tag.
|
||||
* <p>Defaults to an HTML '{@code <span/>}' tag.
|
||||
*/
|
||||
public void setElement(String element) {
|
||||
Assert.hasText(element, "'element' cannot be null or blank");
|
||||
|
||||
@@ -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 <span/>}' 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 <br/>}' 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 <form:errors/>} 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()
|
||||
|
||||
@@ -76,12 +76,12 @@ public class OptionTag extends AbstractHtmlElementBodyTag implements BodyTag {
|
||||
|
||||
|
||||
/**
|
||||
* The 'value' attribute of the rendered HTML {@code <option>} tag.
|
||||
* The 'value' attribute of the rendered HTML {@code <option>} tag.
|
||||
*/
|
||||
private Object value;
|
||||
|
||||
/**
|
||||
* The text body of the rendered HTML {@code <option>} 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 <option>} 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 <option>} 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 <option>} 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 <option>} tag.
|
||||
* Get the text body of the rendered HTML {@code <option>} tag.
|
||||
*/
|
||||
protected String getLabel() {
|
||||
return this.label;
|
||||
|
||||
Reference in New Issue
Block a user