Improved JavaDocs
This commit is contained in:
parent
96497f7f27
commit
7ee45b34a4
4 changed files with 10 additions and 4 deletions
|
@ -48,7 +48,9 @@ import java.io.IOException;
|
||||||
*/
|
*/
|
||||||
public class CauseTag extends XmlSupport {
|
public class CauseTag extends XmlSupport {
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* Prints the cause (if any) for the current HTTP Status Error Code.
|
||||||
|
*
|
||||||
|
* @throws IOException If an error occurs while writing the output.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void doTag() throws IOException {
|
public void doTag() throws IOException {
|
||||||
|
|
|
@ -47,7 +47,9 @@ import java.io.IOException;
|
||||||
*/
|
*/
|
||||||
public class CodeTag extends SimpleTagSupport {
|
public class CodeTag extends SimpleTagSupport {
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* Writes the HTTP Status Error Code to the current JspWriter.
|
||||||
|
*
|
||||||
|
* @throws IOException If an I/O error occurs.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void doTag() throws IOException {
|
public void doTag() throws IOException {
|
||||||
|
|
|
@ -47,7 +47,9 @@ import java.io.IOException;
|
||||||
*/
|
*/
|
||||||
public class MessageTag extends XmlSupport {
|
public class MessageTag extends XmlSupport {
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* Writes the error message associated with the current HTTP Status Error Code.
|
||||||
|
*
|
||||||
|
* @throws IOException If an I/O error occurs.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void doTag() throws IOException {
|
public void doTag() throws IOException {
|
||||||
|
|
|
@ -51,7 +51,7 @@ public class ReasonTag extends XmlSupport {
|
||||||
private int statusCode = -1;
|
private int statusCode = -1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* Writes the Reason Phrase for the current (or specified) HTTP Status Error Code.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void doTag() {
|
public void doTag() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue