husted 2002/07/09 16:59:01
Modified: src/share/org/apache/struts/taglib/logic RedirectTag.java
Log:
Javadoc updates. No code changes.
Revision Changes Path
1.13 +24 -24
jakarta-struts/src/share/org/apache/struts/taglib/logic/RedirectTag.java
Index: RedirectTag.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/logic/RedirectTag.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- RedirectTag.java 13 Jan 2002 00:25:37 -0000 1.12
+++ RedirectTag.java 9 Jul 2002 23:59:01 -0000 1.13
@@ -117,11 +117,11 @@
protected String forward = null;
public String getForward() {
- return (this.forward);
+ return (this.forward);
}
public void setForward(String forward) {
- this.forward = forward;
+ this.forward = forward;
}
@@ -131,11 +131,11 @@
protected String href = null;
public String getHref() {
- return (this.href);
+ return (this.href);
}
public void setHref(String href) {
- this.href = href;
+ this.href = href;
}
@@ -153,16 +153,16 @@
protected String name = null;
public String getName() {
- return (this.name);
+ return (this.name);
}
public void setName(String name) {
- this.name = name;
+ this.name = name;
}
/**
- * The application-relative page URL (beginning with a slash) to which
+ * The module-relative page URL (beginning with a slash) to which
* this redirect will be rendered.
*/
protected String page = null;
@@ -238,11 +238,11 @@
protected String property = null;
public String getProperty() {
- return (this.property);
+ return (this.property);
}
public void setProperty(String property) {
- this.property = property;
+ this.property = property;
}
@@ -311,8 +311,8 @@
}
// Perform the redirection
- HttpServletResponse response =
- (HttpServletResponse) pageContext.getResponse();
+ HttpServletResponse response =
+ (HttpServletResponse) pageContext.getResponse();
try {
response.sendRedirect(url);
} catch (IOException e) {
@@ -331,17 +331,17 @@
*/
public void release() {
- super.release();
+ super.release();
anchor = null;
- forward = null;
- href = null;
- name = null;
+ forward = null;
+ href = null;
+ name = null;
page = null;
- paramId = null;
- paramName = null;
- paramProperty = null;
- paramScope = null;
- property = null;
+ paramId = null;
+ paramName = null;
+ paramProperty = null;
+ paramScope = null;
+ property = null;
scope = null;
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>