1
|
|
/* Generated by AspectJ version 1.0.5 */
|
2
|
|
package org.apache.cactus.server;
|
3
|
|
import javax.servlet.jsp.JspWriter;
|
4
|
|
import javax.servlet.jsp.PageContext;
|
5
|
|
|
6
|
|
/**
|
7
|
|
* Holder class that contains the instances of the implicit objects that will
|
8
|
|
* be accessible in the test classes (i.e. subclasses of
|
9
|
|
* <code>JspTestCase</code>).
|
10
|
|
*
|
11
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
12
|
|
*
|
13
|
|
* @version $Id: JspImplicitObjects.html,v 1.1 2003/04/14 12:27:33 sinisa Exp $
|
14
|
|
*/
|
15
|
|
public class JspImplicitObjects extends ServletImplicitObjects {
|
16
|
|
/**
|
17
|
|
* The JSP redirector <code>PageContext</code> object.
|
18
|
|
*/
|
19
|
|
protected PageContext pageContext;
|
20
|
|
/**
|
21
|
|
* The JSP redirector <code>JspWriter</code> object (same as
|
22
|
|
* <code>pagecontext.getOut()</code>).
|
23
|
|
*/
|
24
|
|
protected JspWriter jspWriter;
|
25
|
|
/**
|
26
|
|
* @return the <code>PageContext</code> implicit object
|
27
|
|
*/
|
28
|
30
|
public PageContext getPageContext() {
|
29
|
30
|
return this.pageContext;
|
30
|
|
}
|
31
|
|
|
32
|
|
/**
|
33
|
|
* @param thePageContext the <code>PageContext</code> implicit object
|
34
|
|
*/
|
35
|
60
|
public void setPageContext(PageContext thePageContext) {
|
36
|
60
|
this.pageContext = thePageContext;
|
37
|
|
}
|
38
|
|
|
39
|
|
/**
|
40
|
|
* @return the <code>JspWriter</code> implicit object
|
41
|
|
*/
|
42
|
60
|
public JspWriter getJspWriter() {
|
43
|
60
|
return this.jspWriter;
|
44
|
|
}
|
45
|
|
|
46
|
|
/**
|
47
|
|
* @param theWriter the <code>JspWriter</code> implicit object
|
48
|
|
*/
|
49
|
60
|
public void setJspWriter(JspWriter theWriter) {
|
50
|
60
|
this.jspWriter = theWriter;
|
51
|
|
}
|
52
|
|
|
53
|
|
/**
|
54
|
|
* Holder class that contains the instances of the implicit objects that will
|
55
|
|
* be accessible in the test classes (i.e. subclasses of
|
56
|
|
* <code>JspTestCase</code>).
|
57
|
|
*
|
58
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
59
|
|
*
|
60
|
|
* @version $Id: JspImplicitObjects.html,v 1.1 2003/04/14 12:27:33 sinisa Exp $
|
61
|
|
*/
|
62
|
60
|
public JspImplicitObjects() {
|
63
|
60
|
super();
|
64
|
|
}
|
65
|
|
}
|