~ubuntu-branches/ubuntu/natty/tomcat6/natty-proposed

« back to all changes in this revision

Viewing changes to java/org/apache/jasper/Options.java

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2010-05-21 13:51:15 UTC
  • mfrom: (2.2.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100521135115-qfwnf24lzvi3644v
Tags: 6.0.26-2
* debian/tomcat6.{postinst,prerm}: Respect TOMCAT6_USER and TOMCAT6_GROUP
  as defined in /etc/default/tomcat6 when setting directory permissions and
  authbind configuration (Closes: #581018, LP: #557300)
* debian/tomcat6.postinst: Use group "tomcat6" instead of "adm" for
  permissions in /var/lib/tomcat6, so that group "adm" doesn't get write
  permissions over /var/lib/tomcat6/webapps (LP: #569118)

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
    /**
92
92
     * Indicates whether SMAP info for JSR45 debugging should be dumped to a
93
93
     * file.
94
 
     * Ignored is suppressSmap() is true
 
94
     * Ignored if suppressSmap() is true.
95
95
     */
96
96
    public boolean isSmapDumped();
97
97
 
101
101
    public boolean getTrimSpaces();
102
102
 
103
103
    /**
104
 
     * Class ID for use in the plugin tag when the browser is IE. 
 
104
     * Gets the class-id value that is sent to Internet Explorer when using
 
105
     * <jsp:plugin> tags.
 
106
     *
 
107
     * @return Class-id value
105
108
     */
106
109
    public String getIeClassId();
107
110
 
118
121
 
119
122
    /**
120
123
     * Compiler to use.
 
124
     * 
 
125
     * <p>
 
126
     * If <code>null</code> (the default), the java compiler from Eclipse JDT
 
127
     * project, bundled with Tomcat, will be used. Otherwise, the
 
128
     * <code>javac</code> task from Apache Ant will be used to call an external
 
129
     * java compiler and the value of this option will be passed to it. See
 
130
     * Apache Ant documentation for the possible values.
121
131
     */
122
132
    public String getCompiler();
123
133
 
124
134
    /**
125
 
     * The compiler target VM, e.g. 1.1, 1.2, 1.3, 1.4, or 1.5.
 
135
     * The compiler target VM, e.g. 1.1, 1.2, 1.3, 1.4, 1.5 or 1.6.
126
136
     */
127
137
    public String getCompilerTargetVM();
128
138
 
129
139
    /**
130
 
     * Compiler source VM, e.g. 1.3, 1.4, or 1.5.
 
140
     * The compiler source VM, e.g. 1.3, 1.4, 1.5 or 1.6.
131
141
     */
132
142
    public String getCompilerSourceVM();   
133
143
 
134
144
    /**
135
 
     * Java compiler class to use.
 
145
     * Jasper Java compiler class to use.
136
146
     */
137
147
    public String getCompilerClassName();   
138
148
 
156
166
    public String getJavaEncoding();
157
167
 
158
168
    /**
159
 
     * boolean flag to tell Ant whether to fork JSP page compilations.
 
169
     * The boolean flag to tell Ant whether to fork JSP page compilations.
 
170
     * 
 
171
     * <p>
 
172
     * Is used only when Jasper uses an external java compiler (wrapped through
 
173
     * a <code>javac</code> Apache Ant task).
160
174
     */
161
175
    public boolean getFork();
162
176
 
176
190
    public TagPluginManager getTagPluginManager();
177
191
 
178
192
    /**
179
 
     * Are Text strings to be generated as char arrays?
 
193
     * Indicates whether text strings are to be generated as char arrays.
 
194
     * 
 
195
     * @return <code>true</code> if text strings are to be generated as char
 
196
     *         arrays, <code>false</code> otherwise
180
197
     */
181
198
    public boolean genStringAsCharArray();
182
199
    
191
208
    public boolean isCaching();
192
209
    
193
210
    /**
194
 
     * The web-application wide cache for the returned TreeNode
195
 
     * by parseXMLDocument in TagLibraryInfoImpl.parseTLD,
196
 
     * if isCaching returns true.
197
 
     * 
198
 
     * @return the Map(String uri, TreeNode tld) instance.
 
211
     * The web-application wide cache for the TagLibraryInfo tag library
 
212
     * descriptors, used if {@link #isCaching()} returns <code>true</code>.
 
213
     * 
 
214
     * <p>
 
215
     * Using this cache avoids the cost of repeating the parsing of a tag
 
216
     * library descriptor XML file (performed by TagLibraryInfoImpl.parseTLD).
 
217
     * </p>
 
218
     * 
 
219
     * @return the Map(String uri, TagLibraryInfo tld) instance.
199
220
     */
200
221
    public Map getCache();
201
222