001: /*
002: * The Apache Software License, Version 1.1
003: *
004: * Copyright (c) 1999 The Apache Software Foundation. All rights
005: * reserved.
006: *
007: * Redistribution and use in source and binary forms, with or without
008: * modification, are permitted provided that the following conditions
009: * are met:
010: *
011: * 1. Redistributions of source code must retain the above copyright
012: * notice, this list of conditions and the following disclaimer.
013: *
014: * 2. Redistributions in binary form must reproduce the above copyright
015: * notice, this list of conditions and the following disclaimer in
016: * the documentation and/or other materials provided with the
017: * distribution.
018: *
019: * 3. The end-user documentation included with the redistribution, if
020: * any, must include the following acknowlegement:
021: * "This product includes software developed by the
022: * Apache Software Foundation (http://www.apache.org/)."
023: * Alternately, this acknowlegement may appear in the software itself,
024: * if and wherever such third-party acknowlegements normally appear.
025: *
026: * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
027: * Foundation" must not be used to endorse or promote products derived
028: * from this software without prior written permission. For written
029: * permission, please contact apache@apache.org.
030: *
031: * 5. Products derived from this software may not be called "Apache"
032: * nor may "Apache" appear in their names without prior written
033: * permission of the Apache Group.
034: *
035: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
036: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
037: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
038: * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
039: * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
040: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
041: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
042: * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
043: * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
044: * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
045: * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
046: * SUCH DAMAGE.
047: * ====================================================================
048: *
049: * This software consists of voluntary contributions made by many
050: * individuals on behalf of the Apache Software Foundation. For more
051: * information on the Apache Software Foundation, please see
052: * <http://www.apache.org/>.
053: *
054: */
055: package com.rimfaxe.webserver.compiler.jsp;
056:
057: import java.util.*;
058:
059: /**
060: * A repository for various info about the page under compilation
061: *
062: * @author Kin-man Chung
063: * @author Lars Andersen
064: */
065:
066: class PageInfo {
067:
068: private Vector imports;
069: private Vector includes;
070:
071: private BeanRepository beanRepository;
072: private Hashtable tagLibraries;
073:
074: private String language = "java";
075: private String xtends = "HttpJspBase";
076: private String contentType = null;
077: private boolean session = true;
078: private int buffer = 8 * 1024; // XXX confirm
079: private boolean autoFlush = true;
080: private boolean threadSafe = true;
081: private boolean isErrorPage = false;
082: private String errorPage = null;
083: private String pageEncoding = null;
084: private int maxTagNesting = 0;
085: private boolean scriptless = false;
086:
087: PageInfo(BeanRepository beanRepository) {
088: this .beanRepository = beanRepository;
089: this .tagLibraries = new Hashtable();
090: this .imports = new Vector();
091: this .includes = new Vector();
092:
093: // Enter standard imports
094: for (int i = 0; i < Constants.STANDARD_IMPORTS.length; i++)
095: imports.add(Constants.STANDARD_IMPORTS[i]);
096: }
097:
098: public void addImports(List imports) {
099: this .imports.addAll(imports);
100: }
101:
102: public List getImports() {
103: return imports;
104: }
105:
106: public void addInclude(String include) {
107: this .includes.add(include);
108: }
109:
110: public List getIncludes() {
111: return includes;
112: }
113:
114: public BeanRepository getBeanRepository() {
115: return beanRepository;
116: }
117:
118: public Hashtable getTagLibraries() {
119: return tagLibraries;
120: }
121:
122: public void setTagLibraries(Hashtable tlibs) {
123: tagLibraries = tlibs;
124: }
125:
126: public String getLanguage() {
127: return language;
128: }
129:
130: public void setLanguage(String language) {
131: this .language = language;
132: }
133:
134: public String getExtends() {
135: return xtends;
136: }
137:
138: public void setExtends(String xtends) {
139: this .xtends = xtends;
140: }
141:
142: public String getContentType() {
143: return contentType;
144: }
145:
146: public void setContentType(String contentType) {
147: this .contentType = contentType;
148: }
149:
150: public String getErrorPage() {
151: return errorPage;
152: }
153:
154: public void setErrorPage(String errorPage) {
155: this .errorPage = errorPage;
156: }
157:
158: public int getBuffer() {
159: return buffer;
160: }
161:
162: public void setBuffer(int buffer) {
163: this .buffer = buffer;
164: }
165:
166: public boolean isSession() {
167: return session;
168: }
169:
170: public void setSession(boolean session) {
171: this .session = session;
172: }
173:
174: public boolean isAutoFlush() {
175: return autoFlush;
176: }
177:
178: public void setAutoFlush(boolean autoFlush) {
179: this .autoFlush = autoFlush;
180: }
181:
182: public boolean isThreadSafe() {
183: return threadSafe;
184: }
185:
186: public void setThreadSafe(boolean threadSafe) {
187: this .threadSafe = threadSafe;
188: }
189:
190: public boolean isIsErrorPage() {
191: return isErrorPage;
192: }
193:
194: public void setIsErrorPage(boolean isErrorPage) {
195: this .isErrorPage = isErrorPage;
196: }
197:
198: public void setPageEncoding(String pageEncoding) {
199: this .pageEncoding = pageEncoding;
200: }
201:
202: public String getPageEncoding() {
203: return pageEncoding;
204: }
205:
206: public int getMaxTagNesting() {
207: return maxTagNesting;
208: }
209:
210: public void setMaxTagNesting(int maxTagNesting) {
211: this .maxTagNesting = maxTagNesting;
212: }
213:
214: public void setScriptless(boolean s) {
215: scriptless = s;
216: }
217:
218: public boolean isScriptless() {
219: return scriptless;
220: }
221:
222: }
|