blob: abf79f9bdac11e69bca62268d37cd38ced91602a [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>ImplicitObjectELResolver</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ImplicitObjectELResolver";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../javax/servlet/jsp/el/FunctionMapper.html" title="interface in javax.servlet.jsp.el"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../javax/servlet/jsp/el/ScopedAttributeELResolver.html" title="class in javax.servlet.jsp.el"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?javax/servlet/jsp/el/ImplicitObjectELResolver.html" target="_top">Frames</a></li>
<li><a href="ImplicitObjectELResolver.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">javax.servlet.jsp.el</div>
<h2 title="Class ImplicitObjectELResolver" class="title">Class ImplicitObjectELResolver</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>ELResolver</li>
<li>
<ul class="inheritance">
<li>javax.servlet.jsp.el.ImplicitObjectELResolver</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">ImplicitObjectELResolver</span>
extends ELResolver</pre>
<div class="block">Defines variable resolution behavior for the EL implicit objects defined in the JSP specification.
<p>
The following variables are resolved by this <code>ELResolver</code>, as per the JSP specification:
</p>
<ul>
<li><code>pageContext</code> - the <code>PageContext</code> object.</li>
<li><code>pageScope</code> - a <code>Map</code> that maps page-scoped attribute names to their values.</li>
<li><code>requestScope</code> - a <code>Map</code> that maps request-scoped attribute names to their values.</li>
<li><code>sessionScope</code> - a <code>Map</code> that maps session-scoped attribute names to their values.</li>
<li><code>applicationScope</code> - a <code>Map</code> that maps application-scoped attribute names to their
values.</li>
<li><code>param</code> - a <code>Map</code> that maps parameter names to a single String parameter value (obtained by
calling <code>ServletRequest.getParameter(String name)</code>).</li>
<li><code>paramValues</code> - a <code>Map</code> that maps parameter names to a <code>String[]</code> of all
values for that parameter (obtained by calling <code>ServletRequest.getParameterValues(String name))</code>.</li>
<li><code>header</code> - a <code>Map</code> that maps header names to a single String header value (obtained by
calling <code>HttpServletRequest.getHeader(String name))</code>.</li>
<li><code>headerValues</code> - a <code>Map</code> that maps header names to a <code>String[]</code> of all values
for that header (obtained by calling <code>HttpServletRequest.getHeaders(String))</code>.</li>
<li><code>cookie</code> - a <code>Map</code> that maps cookie names to a single <code>Cookie</code> object. Cookies
are retrieved according to the semantics of <code>HttpServletRequest.getCookies()</code>. If the same name is shared
by multiple cookies, an implementation must use the first one encountered in the array of <code>Cookie</code> objects
returned by the <code>getCookies()</code> method. However, users of the cookie implicit object must be aware that the
ordering of cookies is currently unspecified in the servlet specification.</li>
<li><code>initParam</code> - a <code>Map</code> that maps context initialization parameter names to their String
parameter value (obtained by calling <code>ServletContext.getInitParameter(String name))</code>.</li>
</ul></div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>JSP 2.1</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><code>javax.el.ELResolver</code></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../javax/servlet/jsp/el/ImplicitObjectELResolver.html#ImplicitObjectELResolver--">ImplicitObjectELResolver</a></span>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>java.lang.Class&lt;java.lang.String&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../javax/servlet/jsp/el/ImplicitObjectELResolver.html#getCommonPropertyType-ELContext-java.lang.Object-">getCommonPropertyType</a></span>(ELContext&nbsp;context,
java.lang.Object&nbsp;base)</code>
<div class="block">If the base object is <code>null</code>, returns <code>String.class</code>.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>java.util.Iterator&lt;java.beans.FeatureDescriptor&gt;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../javax/servlet/jsp/el/ImplicitObjectELResolver.html#getFeatureDescriptors-ELContext-java.lang.Object-">getFeatureDescriptors</a></span>(ELContext&nbsp;context,
java.lang.Object&nbsp;base)</code>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns an
<code>Iterator</code> containing <code>FeatureDescriptor</code> objects with information about each JSP implicit
object resolved by this resolver.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>java.lang.Class</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../javax/servlet/jsp/el/ImplicitObjectELResolver.html#getType-ELContext-java.lang.Object-java.lang.Object-">getType</a></span>(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property)</code>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns
<code>null</code> to indicate that no types are ever accepted to <code>setValue()</code>.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>java.lang.Object</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../javax/servlet/jsp/el/ImplicitObjectELResolver.html#getValue-ELContext-java.lang.Object-java.lang.Object-">getValue</a></span>(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property)</code>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns the
implicit object.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../javax/servlet/jsp/el/ImplicitObjectELResolver.html#isReadOnly-ELContext-java.lang.Object-java.lang.Object-">isReadOnly</a></span>(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property)</code>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns
<code>true</code> to indicate that implicit objects cannot be overwritten.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../javax/servlet/jsp/el/ImplicitObjectELResolver.html#setValue-ELContext-java.lang.Object-java.lang.Object-java.lang.Object-">setValue</a></span>(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property,
java.lang.Object&nbsp;val)</code>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, throws
<code>PropertyNotWritableException</code> to indicate that implicit objects cannot be overwritten.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ImplicitObjectELResolver--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ImplicitObjectELResolver</h4>
<pre>public&nbsp;ImplicitObjectELResolver()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getValue-ELContext-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getValue</h4>
<pre>public&nbsp;java.lang.Object&nbsp;getValue(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property)</pre>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns the
implicit object.
<p>
The <code>propertyResolved</code> property of the <code>ELContext</code> object must be set to <code>true</code>
by this resolver before returning if an implicit object is matched. If this property is not <code>true</code>
after this method is called, the caller should ignore the return value.
</p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>context</code> - The context of this evaluation.</dd>
<dd><code>base</code> - Only <code>null</code> is handled by this resolver. Other values will result in an immediate
return.</dd>
<dd><code>property</code> - The name of the implicit object to resolve.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>If the <code>propertyResolved</code> property of <code>ELContext</code> was set to <code>true</code>,
then the implicit object; otherwise undefined.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.NullPointerException</code> - if context is <code>null</code></dd>
</dl>
</li>
</ul>
<a name="getType-ELContext-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getType</h4>
<pre>public&nbsp;java.lang.Class&nbsp;getType(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property)</pre>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns
<code>null</code> to indicate that no types are ever accepted to <code>setValue()</code>.
<p>
The <code>propertyResolved</code> property of the <code>ELContext</code> object must be set to <code>true</code>
by this resolver before returning if an implicit object is matched. If this property is not <code>true</code>
after this method is called, the caller should ignore the return value.
</p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>context</code> - The context of this evaluation.</dd>
<dd><code>base</code> - Only <code>null</code> is handled by this resolver. Other values will result in an immediate
return.</dd>
<dd><code>property</code> - The name of the implicit object to resolve.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>If the <code>propertyResolved</code> property of <code>ELContext</code> was set to <code>true</code>,
then <code>null</code>; otherwise undefined.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.NullPointerException</code> - if context is <code>null</code></dd>
</dl>
</li>
</ul>
<a name="setValue-ELContext-java.lang.Object-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setValue</h4>
<pre>public&nbsp;void&nbsp;setValue(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property,
java.lang.Object&nbsp;val)</pre>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, throws
<code>PropertyNotWritableException</code> to indicate that implicit objects cannot be overwritten.
<p>
The <code>propertyResolved</code> property of the <code>ELContext</code> object must be set to <code>true</code>
by this resolver before returning if an implicit object is matched. If this property is not <code>true</code>
after this method is called, the caller should ignore the return value.
</p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>context</code> - The context of this evaluation.</dd>
<dd><code>base</code> - Only <code>null</code> is handled by this resolver. Other values will result in an immediate
return.</dd>
<dd><code>property</code> - The name of the implicit object.</dd>
<dd><code>val</code> - The value to be associated with the implicit object.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.NullPointerException</code> - if context is <code>null</code>.</dd>
<dd><code>PropertyNotWritableException</code> - always thrown, if the implicit object name is recognized by this resolver.</dd>
</dl>
</li>
</ul>
<a name="isReadOnly-ELContext-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isReadOnly</h4>
<pre>public&nbsp;boolean&nbsp;isReadOnly(ELContext&nbsp;context,
java.lang.Object&nbsp;base,
java.lang.Object&nbsp;property)</pre>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns
<code>true</code> to indicate that implicit objects cannot be overwritten.
<p>
The <code>propertyResolved</code> property of the <code>ELContext</code> object must be set to <code>true</code>
by this resolver before returning if an implicit object is matched. If this property is not <code>true</code>
after this method is called, the caller should ignore the return value.
</p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>context</code> - The context of this evaluation.</dd>
<dd><code>base</code> - Only <code>null</code> is handled by this resolver. Other values will result in an immediate
return.</dd>
<dd><code>property</code> - The name of the implicit object.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>If the <code>propertyResolved</code> property of <code>ELContext</code> was set to <code>true</code>,
then <code>true</code>; otherwise undefined.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.NullPointerException</code> - if context is <code>null</code>.</dd>
</dl>
</li>
</ul>
<a name="getFeatureDescriptors-ELContext-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFeatureDescriptors</h4>
<pre>public&nbsp;java.util.Iterator&lt;java.beans.FeatureDescriptor&gt;&nbsp;getFeatureDescriptors(ELContext&nbsp;context,
java.lang.Object&nbsp;base)</pre>
<div class="block">If the base object is <code>null</code>, and the property matches the name of a JSP implicit object, returns an
<code>Iterator</code> containing <code>FeatureDescriptor</code> objects with information about each JSP implicit
object resolved by this resolver. Otherwise, returns <code>null</code>.
<p>
The <code>Iterator</code> returned must contain one instance of <code>FeatureDescriptor</code> for each of
the EL implicit objects defined by the JSP spec. Each info object contains information about a single implicit
object, and is initialized as follows:
</p>
<dl>
<dt>displayName</dt><dd>- The name of the implicit object.</dd>
<dt>name</dt><dd>- Same as displayName property.</dd>
<dt>shortDescription</dt><dd>- A suitable description for the implicit object. Will vary by implementation.</dd>
<dt>expert</dt><dd>- <code>false</code></dd>
<dt>hidden</dt><dd>- <code>false</code></dd>
<dt>preferred</dt><dd>- <code>true</code></dd>
</dl>
In addition, the following named attributes must be set in the returned <code>FeatureDescriptor</code>s:
<dl>
<dt><code>ELResolver#TYPE</code></dt><dd>- The runtime type of the implicit object.</dd>
<dt><code>ELResolver#RESOLVABLE_AT_DESIGN_TIME</code></dt><dd>- <code>true</code>.</dd>
</dl></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>context</code> - The context of this evaluation.</dd>
<dd><code>base</code> - Only <code>null</code> is handled by this resolver. Other values will result in a
<code>null</code> return value.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>An <code>Iterator</code> containing one <code>FeatureDescriptor</code> object for each implicit object,
or <code>null</code> if <code>base</code> is not <code>null</code>.</dd>
</dl>
</li>
</ul>
<a name="getCommonPropertyType-ELContext-java.lang.Object-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getCommonPropertyType</h4>
<pre>public&nbsp;java.lang.Class&lt;java.lang.String&gt;&nbsp;getCommonPropertyType(ELContext&nbsp;context,
java.lang.Object&nbsp;base)</pre>
<div class="block">If the base object is <code>null</code>, returns <code>String.class</code>. Otherwise, returns <code>null</code>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>context</code> - The context of this evaluation.</dd>
<dd><code>base</code> - Only <code>null</code> is handled by this resolver. Other values will result in a
<code>null</code> return value.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><code>null</code> if base is not <code>null</code>; otherwise <code>String.class</code>.</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../javax/servlet/jsp/el/FunctionMapper.html" title="interface in javax.servlet.jsp.el"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../javax/servlet/jsp/el/ScopedAttributeELResolver.html" title="class in javax.servlet.jsp.el"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?javax/servlet/jsp/el/ImplicitObjectELResolver.html" target="_top">Frames</a></li>
<li><a href="ImplicitObjectELResolver.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>