<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_24) on Fri Jul 15 17:00:54 PDT 2011 -->
<TITLE>
InterstitialAd (Google AdMob Ads SDK)
</TITLE>
<META NAME="date" CONTENT="2011-07-15">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="InterstitialAd (Google AdMob Ads SDK)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../com/google/ads/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package
</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class
</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree
</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated
</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index
</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help
</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../com/google/ads/AdView.html" title="class in com.google.ads"><B>PREV CLASS
</B></A>
NEXT CLASS
</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/google/ads/InterstitialAd.html" target="_top"><B>FRAMES
</B></A>
<A HREF="InterstitialAd.html" target="_top"><B>NO FRAMES
</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes
</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY:
NESTED
|
FIELD
|
<A HREF="#constructor_summary">CONSTR
</A> |
<A HREF="#method_summary">METHOD
</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL:
FIELD
|
<A HREF="#constructor_detail">CONSTR
</A> |
<A HREF="#method_detail">METHOD
</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
com.google.ads
</FONT>
<BR>
Class InterstitialAd
</H2>
<PRE>
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object
</A>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>com.google.ads.InterstitialAd
</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:
</B> <DD><A HREF="../../../com/google/ads/Ad.html" title="interface in com.google.ads">Ad
</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class
<B>InterstitialAd
</B><DT>extends
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object
</A><DT>implements
<A HREF="../../../com/google/ads/Ad.html" title="interface in com.google.ads">Ad
</A></DL>
</PRE>
<P>
A class for full-screen interstitial ads.
Sample code:
<pre class="code">
public class MyActivity extends Activity implements AdListener {
private InterstitialAd interstitialAd;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Create an ad.
interstitialAd = new InterstitialAd(this, "adUnitId");
// Create an ad request.
AdRequest adRequest = new AdRequest();
// Fill out ad request.
// Register an AdListener.
ad.setAdListener(this);
// Start loading the ad in the background.
interstitialAd.loadAd(adRequest);
}
public void onDestroy() {
// Stop loading the ad.
interstitialAd.stopLoading();
super.onDestroy();
}
public void onReceiveAd(Ad ad) {
// Be sure to check that it is an InterstitialAd that triggered this
// callback. Also, if there are multiple InterstitialAds, make sure it
// is the correct one.
if (ad == interstitialAd) {
// For best performance, make sure you are not performing
// processor-intensive or media-intensive operations while showing
// interstitial ads.
interstitialAd.show();
}
}
}
</pre>
Another option is to simply call
<A HREF="../../../com/google/ads/InterstitialAd.html#show()"><CODE>show()
</CODE></A>
(which checks
<A HREF="../../../com/google/ads/InterstitialAd.html#isReady()"><CODE>isReady()
</CODE></A>) when the interstitial should be shown. If
it hasn't loaded by this point, nothing will show.
<P>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary
</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../com/google/ads/InterstitialAd.html#InterstitialAd(android.app.Activity, java.lang.String)">InterstitialAd
</A></B>(
<A HREF="http://developer.android.com/reference/android/app/Activity.html?is-external=true" title="class or interface in android.app">Activity
</A> activity,
<A HREF="http://developer.android.com/reference/java/lang/String.html?is-external=true" title="class or interface in java.lang">String
</A> adUnitId)
</CODE>
<BR>
Creates an InterstitialAd with a long load timeout.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../com/google/ads/InterstitialAd.html#InterstitialAd(android.app.Activity, java.lang.String, boolean)">InterstitialAd
</A></B>(
<A HREF="http://developer.android.com/reference/android/app/Activity.html?is-external=true" title="class or interface in android.app">Activity
</A> activity,
<A HREF="http://developer.android.com/reference/java/lang/String.html?is-external=true" title="class or interface in java.lang">String
</A> adUnitId,
boolean
shortTimeout)
</CODE>
<BR>
Creates an InterstitialAd.
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary
</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/google/ads/InterstitialAd.html#isReady()">isReady
</A></B>()
</CODE>
<BR>
See
<A HREF="../../../com/google/ads/Ad.html#isReady()"><CODE>Ad.isReady()
</CODE></A>.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/google/ads/InterstitialAd.html#loadAd(com.google.ads.AdRequest)">loadAd
</A></B>(
<A HREF="../../../com/google/ads/AdRequest.html" title="class in com.google.ads">AdRequest
</A> adRequest)
</CODE>
<BR>
Download an ad using the supplied
<A HREF="../../../com/google/ads/AdRequest.html" title="class in com.google.ads"><CODE>AdRequest
</CODE></A>.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/google/ads/InterstitialAd.html#setAdListener(com.google.ads.AdListener)">setAdListener
</A></B>(
<A HREF="../../../com/google/ads/AdListener.html" title="interface in com.google.ads">AdListener
</A> adListener)
</CODE>
<BR>
Set an
<A HREF="../../../com/google/ads/AdListener.html" title="interface in com.google.ads"><CODE>AdListener
</CODE></A> for this
<A HREF="../../../com/google/ads/InterstitialAd.html" title="class in com.google.ads"><CODE>InterstitialAd
</CODE></A>.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/google/ads/InterstitialAd.html#show()">show
</A></B>()
</CODE>
<BR>
Show the interstitial ad if it's loaded and ready to show.
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../com/google/ads/InterstitialAd.html#stopLoading()">stopLoading
</A></B>()
</CODE>
<BR>
Stops loading the ad.
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object
</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait
</A>,
<A HREF="http://developer.android.com/reference/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait
</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail
</B></FONT></TH>
</TR>
</TABLE>
<A NAME="InterstitialAd(android.app.Activity, java.lang.String)"><!-- --></A><H3>
InterstitialAd
</H3>
<PRE>
public
<B>InterstitialAd
</B>(
<A HREF="http://developer.android.com/reference/android/app/Activity.html?is-external=true" title="class or interface in android.app">Activity
</A> activity,
<A HREF="http://developer.android.com/reference/java/lang/String.html?is-external=true" title="class or interface in java.lang">String
</A> adUnitId)
</PRE>
<DL>
<DD>Creates an InterstitialAd with a long load timeout.
<P>
<DL>
<DT><B>Parameters:
</B><DD><CODE>activity
</CODE> - the associated
<A HREF="http://developer.android.com/reference/android/app/Activity.html?is-external=true" title="class or interface in android.app"><CODE>Activity
</CODE></A>.
<DD><CODE>adUnitId
</CODE> - the ad unit ID.
</DL>
</DL>
<HR>
<A NAME="InterstitialAd(android.app.Activity, java.lang.String, boolean)"><!-- --></A><H3>
InterstitialAd
</H3>
<PRE>
public
<B>InterstitialAd
</B>(
<A HREF="http://developer.android.com/reference/android/app/Activity.html?is-external=true" title="class or interface in android.app">Activity
</A> activity,
<A HREF="http://developer.android.com/reference/java/lang/String.html?is-external=true" title="class or interface in java.lang">String
</A> adUnitId,
boolean
shortTimeout)
</PRE>
<DL>
<DD>Creates an InterstitialAd. Use
<code>shortTimeout
</code> to indicate if the
interstitial should have a short load timeout, making it suitable for use
immediately when an app opens.
<P>
<DL>
<DT><B>Parameters:
</B><DD><CODE>activity
</CODE> - the associated
<A HREF="http://developer.android.com/reference/android/app/Activity.html?is-external=true" title="class or interface in android.app"><CODE>Activity
</CODE></A>.
<DD><CODE>adUnitId
</CODE> - the ad unit ID.
<DD><CODE>shortTimeout
</CODE> - a flag to indicate that the interstitial should have a
short load timeout value.
</DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail
</B></FONT></TH>
</TR>
</TABLE>
<A NAME="isReady()"><!-- --></A><H3>
isReady
</H3>
<PRE>
public boolean
<B>isReady
</B>()
</PRE>
<DL>
<DD>See
<A HREF="../../../com/google/ads/Ad.html#isReady()"><CODE>Ad.isReady()
</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:
</B><DD><CODE><A HREF="../../../com/google/ads/Ad.html#isReady()">isReady
</A></CODE> in interface
<CODE><A HREF="../../../com/google/ads/Ad.html" title="interface in com.google.ads">Ad
</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:
</B><DD><code>true
</code> if the ad is successfully loaded and is ready to be
shown.
<DT><B>See Also:
</B><DD><A HREF="../../../com/google/ads/Ad.html#isReady()"><CODE>Ad.isReady()
</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="loadAd(com.google.ads.AdRequest)"><!-- --></A><H3>
loadAd
</H3>
<PRE>
public void
<B>loadAd
</B>(
<A HREF="../../../com/google/ads/AdRequest.html" title="class in com.google.ads">AdRequest
</A> adRequest)
</PRE>
<DL>
<DD>Download an ad using the supplied
<A HREF="../../../com/google/ads/AdRequest.html" title="class in com.google.ads"><CODE>AdRequest
</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:
</B><DD><CODE><A HREF="../../../com/google/ads/Ad.html#loadAd(com.google.ads.AdRequest)">loadAd
</A></CODE> in interface
<CODE><A HREF="../../../com/google/ads/Ad.html" title="interface in com.google.ads">Ad
</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:
</B><DD><CODE>adRequest
</CODE> - the
<A HREF="../../../com/google/ads/AdRequest.html" title="class in com.google.ads"><CODE>AdRequest
</CODE></A> used to fetch the ad.
</DL>
</DD>
</DL>
<HR>
<A NAME="show()"><!-- --></A><H3>
show
</H3>
<PRE>
public void
<B>show
</B>()
</PRE>
<DL>
<DD>Show the interstitial ad if it's loaded and ready to show. Otherwise does
nothing.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setAdListener(com.google.ads.AdListener)"><!-- --></A><H3>
setAdListener
</H3>
<PRE>
public void
<B>setAdListener
</B>(
<A HREF="../../../com/google/ads/AdListener.html" title="interface in com.google.ads">AdListener
</A> adListener)
</PRE>
<DL>
<DD>Set an
<A HREF="../../../com/google/ads/AdListener.html" title="interface in com.google.ads"><CODE>AdListener
</CODE></A> for this
<A HREF="../../../com/google/ads/InterstitialAd.html" title="class in com.google.ads"><CODE>InterstitialAd
</CODE></A>.
<P>
<DD><DL>
<DT><B>Specified by:
</B><DD><CODE><A HREF="../../../com/google/ads/Ad.html#setAdListener(com.google.ads.AdListener)">setAdListener
</A></CODE> in interface
<CODE><A HREF="../../../com/google/ads/Ad.html" title="interface in com.google.ads">Ad
</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:
</B><DD><CODE>adListener
</CODE> - the
<A HREF="../../../com/google/ads/AdListener.html" title="interface in com.google.ads"><CODE>AdListener
</CODE></A>.
</DL>
</DD>
</DL>
<HR>
<A NAME="stopLoading()"><!-- --></A><H3>
stopLoading
</H3>
<PRE>
public void
<B>stopLoading
</B>()
</PRE>
<DL>
<DD>Stops loading the ad.
<P>
<DD><DL>
<DT><B>Specified by:
</B><DD><CODE><A HREF="../../../com/google/ads/Ad.html#stopLoading()">stopLoading
</A></CODE> in interface
<CODE><A HREF="../../../com/google/ads/Ad.html" title="interface in com.google.ads">Ad
</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../com/google/ads/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package
</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class
</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree
</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated
</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index
</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help
</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../com/google/ads/AdView.html" title="class in com.google.ads"><B>PREV CLASS
</B></A>
NEXT CLASS
</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?com/google/ads/InterstitialAd.html" target="_top"><B>FRAMES
</B></A>
<A HREF="InterstitialAd.html" target="_top"><B>NO FRAMES
</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes
</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY:
NESTED
|
FIELD
|
<A HREF="#constructor_summary">CONSTR
</A> |
<A HREF="#method_summary">METHOD
</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL:
FIELD
|
<A HREF="#constructor_detail">CONSTR
</A> |
<A HREF="#method_detail">METHOD
</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>