Package javax.servlet.descriptor
Interface JspPropertyGroupDescriptor
-
- All Known Implementing Classes:
ServletContextHandler.JspPropertyGroup
public interface JspPropertyGroupDescriptor- Since:
- Servlet 3.0 TODO SERVLET3 - Add comments
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBuffer()StringgetDefaultContentType()StringgetDeferredSyntaxAllowedAsLiteral()StringgetElIgnored()StringgetErrorOnUndeclaredNamespace()Collection<String>getIncludeCodas()Collection<String>getIncludePreludes()StringgetIsXml()StringgetPageEncoding()StringgetScriptingInvalid()StringgetTrimDirectiveWhitespaces()Collection<String>getUrlPatterns()
-
-
-
Method Detail
-
getUrlPatterns
Collection<String> getUrlPatterns()
-
getElIgnored
String getElIgnored()
-
getPageEncoding
String getPageEncoding()
-
getScriptingInvalid
String getScriptingInvalid()
-
getIsXml
String getIsXml()
-
getIncludePreludes
Collection<String> getIncludePreludes()
-
getIncludeCodas
Collection<String> getIncludeCodas()
-
getDeferredSyntaxAllowedAsLiteral
String getDeferredSyntaxAllowedAsLiteral()
-
getTrimDirectiveWhitespaces
String getTrimDirectiveWhitespaces()
-
getDefaultContentType
String getDefaultContentType()
-
getBuffer
String getBuffer()
-
getErrorOnUndeclaredNamespace
String getErrorOnUndeclaredNamespace()
-
-