389 lines
18 KiB
HTML
389 lines
18 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<!--NewPage-->
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>
|
|
UnionFind (Compiler)
|
|
</TITLE>
|
|
|
|
|
|
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../dev_javadoc.css" TITLE="Style">
|
|
|
|
<SCRIPT type="text/javascript">
|
|
function windowTitle()
|
|
{
|
|
if (location.href.indexOf('is-external=true') == -1) {
|
|
parent.document.title="UnionFind (Compiler)";
|
|
}
|
|
}
|
|
</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="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="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/javascript/jscomp/graph/UndiGraph.UndiGraphNode.html" title="interface in com.google.javascript.jscomp.graph"><B>PREV CLASS</B></A>
|
|
NEXT CLASS</FONT></TD>
|
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
<A HREF="../../../../../index.html?com/google/javascript/jscomp/graph/UnionFind.html" target="_top"><B>FRAMES</B></A>
|
|
<A HREF="UnionFind.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
DETAIL: FIELD | CONSTR | <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.javascript.jscomp.graph</FONT>
|
|
<BR>
|
|
Interface UnionFind<E></H2>
|
|
<DL>
|
|
<DT><DT><B>Type Parameters:</B><DD><CODE>E</CODE> - element type</DL>
|
|
<DL>
|
|
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../com/google/javascript/jscomp/graph/StandardUnionFind.html" title="class in com.google.javascript.jscomp.graph">StandardUnionFind</A></DD>
|
|
</DL>
|
|
<HR>
|
|
<DL>
|
|
<DT><PRE>public interface <B>UnionFind<E></B></DL>
|
|
</PRE>
|
|
|
|
<P>
|
|
Union-Find is a classical algorithm used to find connected components in
|
|
graph theory.
|
|
|
|
<p>Each equivalence class has a representative element that is chosen
|
|
arbitrarily and is used to determine if two elements are members of the same
|
|
class.
|
|
|
|
<p>See <a
|
|
href="http://www.algorithmist.com/index.php?title=Union_Find&oldid=7575">
|
|
algorithmist</a> for more detail.
|
|
<P>
|
|
|
|
<P>
|
|
<HR>
|
|
|
|
<P>
|
|
|
|
<!-- ========== 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> void</CODE></FONT></TD>
|
|
<TD><CODE><B><A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html#add(E)">add</A></B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> e)</CODE>
|
|
|
|
<BR>
|
|
Adds the given element to a new set if it is not already in a set.</TD>
|
|
</TR>
|
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
<CODE> <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A><<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A><<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A>>></CODE></FONT></TD>
|
|
<TD><CODE><B><A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html#allEquivalenceClasses()">allEquivalenceClasses</A></B>()</CODE>
|
|
|
|
<BR>
|
|
Returns an immutable collection containing all equivalence classes.</TD>
|
|
</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/javascript/jscomp/graph/UnionFind.html#areEquivalent(E, E)">areEquivalent</A></B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> a,
|
|
<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> b)</CODE>
|
|
|
|
<BR>
|
|
Returns true if <code>a</code> and <code>b</code> belong to the same equivalence
|
|
class.</TD>
|
|
</TR>
|
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
<CODE> <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A><<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A>></CODE></FONT></TD>
|
|
<TD><CODE><B><A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html#elements()">elements</A></B>()</CODE>
|
|
|
|
<BR>
|
|
Returns an unmodifiable set of all elements added to the UnionFind.</TD>
|
|
</TR>
|
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
<CODE> <A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A></CODE></FONT></TD>
|
|
<TD><CODE><B><A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html#find(E)">find</A></B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> e)</CODE>
|
|
|
|
<BR>
|
|
Returns the representative of the equivalence class of <code>e</code>.</TD>
|
|
</TR>
|
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
<CODE> <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A><<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A>></CODE></FONT></TD>
|
|
<TD><CODE><B><A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html#findAll(E)">findAll</A></B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> value)</CODE>
|
|
|
|
<BR>
|
|
Returns the elements in the same equivalence class as <code>value</code>.</TD>
|
|
</TR>
|
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
|
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
|
<CODE> <A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A></CODE></FONT></TD>
|
|
<TD><CODE><B><A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html#union(E, E)">union</A></B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> a,
|
|
<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> b)</CODE>
|
|
|
|
<BR>
|
|
Unions the equivalence classes of <code>a</code> and <code>b</code> and returns the
|
|
representative of the resulting equivalence class.</TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
<P>
|
|
|
|
<!-- ============ 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="add(java.lang.Object)"><!-- --></A><A NAME="add(E)"><!-- --></A><H3>
|
|
add</H3>
|
|
<PRE>
|
|
void <B>add</B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> e)</PRE>
|
|
<DL>
|
|
<DD>Adds the given element to a new set if it is not already in a set.
|
|
<P>
|
|
<DD><DL>
|
|
|
|
<DT><B>Throws:</B>
|
|
<DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang">UnsupportedOperationException</A></CODE> - if the add operation is not
|
|
supported by this union-find.</DL>
|
|
</DD>
|
|
</DL>
|
|
<HR>
|
|
|
|
<A NAME="union(java.lang.Object,java.lang.Object)"><!-- --></A><A NAME="union(E, E)"><!-- --></A><H3>
|
|
union</H3>
|
|
<PRE>
|
|
<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> <B>union</B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> a,
|
|
<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> b)</PRE>
|
|
<DL>
|
|
<DD>Unions the equivalence classes of <code>a</code> and <code>b</code> and returns the
|
|
representative of the resulting equivalence class. The elements will be
|
|
added if they are not already present.
|
|
<P>
|
|
<DD><DL>
|
|
|
|
<DT><B>Throws:</B>
|
|
<DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang">UnsupportedOperationException</A></CODE> - if the add operation is not
|
|
supported by this union-find.</DL>
|
|
</DD>
|
|
</DL>
|
|
<HR>
|
|
|
|
<A NAME="find(java.lang.Object)"><!-- --></A><A NAME="find(E)"><!-- --></A><H3>
|
|
find</H3>
|
|
<PRE>
|
|
<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> <B>find</B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> e)</PRE>
|
|
<DL>
|
|
<DD>Returns the representative of the equivalence class of <code>e</code>.
|
|
<P>
|
|
<DD><DL>
|
|
</DL>
|
|
</DD>
|
|
</DL>
|
|
<HR>
|
|
|
|
<A NAME="areEquivalent(java.lang.Object,java.lang.Object)"><!-- --></A><A NAME="areEquivalent(E, E)"><!-- --></A><H3>
|
|
areEquivalent</H3>
|
|
<PRE>
|
|
boolean <B>areEquivalent</B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> a,
|
|
<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> b)</PRE>
|
|
<DL>
|
|
<DD>Returns true if <code>a</code> and <code>b</code> belong to the same equivalence
|
|
class.
|
|
<P>
|
|
<DD><DL>
|
|
|
|
<DT><B>Throws:</B>
|
|
<DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</A></CODE> - if any argument is not an element of this
|
|
structure.</DL>
|
|
</DD>
|
|
</DL>
|
|
<HR>
|
|
|
|
<A NAME="elements()"><!-- --></A><H3>
|
|
elements</H3>
|
|
<PRE>
|
|
<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A><<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A>> <B>elements</B>()</PRE>
|
|
<DL>
|
|
<DD>Returns an unmodifiable set of all elements added to the UnionFind.
|
|
<P>
|
|
<DD><DL>
|
|
</DL>
|
|
</DD>
|
|
</DL>
|
|
<HR>
|
|
|
|
<A NAME="allEquivalenceClasses()"><!-- --></A><H3>
|
|
allEquivalenceClasses</H3>
|
|
<PRE>
|
|
<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A><<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A><<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A>>> <B>allEquivalenceClasses</B>()</PRE>
|
|
<DL>
|
|
<DD>Returns an immutable collection containing all equivalence classes. The
|
|
returned collection represents a snapshot of the current state and will not
|
|
reflect changes made to the data structure.
|
|
<P>
|
|
<DD><DL>
|
|
</DL>
|
|
</DD>
|
|
</DL>
|
|
<HR>
|
|
|
|
<A NAME="findAll(java.lang.Object)"><!-- --></A><A NAME="findAll(E)"><!-- --></A><H3>
|
|
findAll</H3>
|
|
<PRE>
|
|
<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A><<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A>> <B>findAll</B>(<A HREF="../../../../../com/google/javascript/jscomp/graph/UnionFind.html" title="type parameter in UnionFind">E</A> value)</PRE>
|
|
<DL>
|
|
<DD>Returns the elements in the same equivalence class as <code>value</code>.
|
|
<P>
|
|
<DD><DL>
|
|
|
|
<DT><B>Returns:</B><DD>an unmodifiable view. As equivalence classes are merged, this set
|
|
will reflect those changes.
|
|
<DT><B>Throws:</B>
|
|
<DD><CODE><A HREF="http://java.sun.com/javase/6/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</A></CODE> - if a requested element does not belong
|
|
to the structure.</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="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="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/javascript/jscomp/graph/UndiGraph.UndiGraphNode.html" title="interface in com.google.javascript.jscomp.graph"><B>PREV CLASS</B></A>
|
|
NEXT CLASS</FONT></TD>
|
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
|
<A HREF="../../../../../index.html?com/google/javascript/jscomp/graph/UnionFind.html" target="_top"><B>FRAMES</B></A>
|
|
<A HREF="UnionFind.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 | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
|
|
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
|
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
|
|
</TR>
|
|
</TABLE>
|
|
<A NAME="skip-navbar_bottom"></A>
|
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
|
|
|
<HR>
|
|
|
|
<div id="footer">
|
|
<div id="footerlogo">
|
|
<img src="http://www.google.com/images/art.gif"
|
|
alt="Google colored balls">
|
|
</div>
|
|
|
|
<div id="copyright">
|
|
<p>© 2009 Google -
|
|
<a href="http://www.google.com/privacy.html">Privacy Policy</a> -
|
|
<a href="http://www.google.com/terms_of_service.html">Terms and Conditions</a> -
|
|
<a href="http://www.google.com/about.html">About Google</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</BODY>
|
|
</HTML>
|