/lib/docs/enum/docs/api/com/plotnix/enum/Enum.html
HTML | 540 lines | 472 code | 53 blank | 15 comment | 0 complexity | 2fa55ad426e6c9bb950fc288fc6e0de6 MD5 | raw file
Possible License(s): LGPL-3.0, Apache-2.0, GPL-3.0, GPL-2.0, AGPL-3.0, JSON, BSD-3-Clause
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
- <!--NewPage-->
- <HTML>
- <HEAD>
- <!-- Generated by javadoc on Sat May 19 22:22:59 EDT 2001 -->
- <TITLE>
- Flexible Enums in Java (Version 0.1-dev): Class Enum
- </TITLE>
- <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
- </HEAD>
- <BODY BGCOLOR="white">
-
- <!-- ========== START OF NAVBAR ========== -->
- <A NAME="navbar_top"><!-- --></A>
- <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
- <TR>
- <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
- <A NAME="navbar_top_firstrow"><!-- --></A>
- <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
- <TR ALIGN="center" VALIGN="top">
- <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">
- PREV CLASS
- NEXT CLASS</FONT></TD>
- <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../../../index.html" TARGET="_top"><B>FRAMES</B></A>
- <A HREF="Enum.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
- </TR>
- <TR>
- <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
- SUMMARY: INNER | 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>
- <!-- =========== END OF NAVBAR =========== -->
-
- <HR>
- <!-- ======== START OF CLASS DATA ======== -->
- <H2>
- <FONT SIZE="-1">
- com.plotnix.enum</FONT>
- <BR>
- Class Enum</H2>
- <PRE>
- java.lang.Object
- |
- +--<B>com.plotnix.enum.Enum</B>
- </PRE>
- <DL>
- <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD>
- </DL>
- <HR>
- <DL>
- <DT>public class <B>Enum</B><DT>extends java.lang.Object<DT>implements java.io.Serializable</DL>
-
- <P>
- Enum represents a value characterized by the following properties:
- <ul>
- <li>It has an integer value that uniquely identifies it among
- other Enums belonging to the same class. By default,
- the integer value represents the order in which Enums are added
- to the class, starting with 0. Alternatively, an integer value
- can be assigned explicitly to the Enum in the constructor.
- </li>
- <li>It has a string value, which is also unique. By default, this
- string value is the name of a <code>public static Enum</code> field
- declared on this Enum's own class for this enum. If there is
- no such name and the string value was not explicitly specified in the
- constructor, then the string value is a string representation of the
- Enum's integer value.
- </li>
- <li>The toString() method of the Enum returns a human readable
- description of the Enum. The class attempts to locate a
- label for the constant in the resource bundle that has the same
- name as the class itself. If that fails and a default label
- was specified in the constructor, that label is returned.
- If no such label was specified, the string value of the constant is returned.
- </li>
- </ul>
- Static methods of the Enum class support:
- <ul>
- <li>Loading an Enum from .property file</li>
- <li>Automatic generation of Enum objects from integer constants</li>
- <li>Retrieving an array of all constants of a given type</li>
- <li>Retrieving an individual constant of a given type by its string or integer value</li>
- </ul>
- <P>
- <DL>
- <DT><B>Version: </B><DD>$Revision$ $Date$</DD>
- <DT><B>Author: </B><DD>Dmitri Plotnikov</DD>
- <DT><B>See Also: </B><DD><A HREF="../../../serialized-form.html#com.plotnix.enum.Enum">Serialized Form</A></DL>
- <HR>
-
- <P>
- <!-- ======== INNER CLASS SUMMARY ======== -->
-
-
- <!-- =========== FIELD SUMMARY =========== -->
-
-
- <!-- ======== CONSTRUCTOR SUMMARY ======== -->
-
- <A NAME="constructor_summary"><!-- --></A>
- <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
- <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
- <TD COLSPAN=2><FONT SIZE="+2">
- <B>Constructor Summary</B></FONT></TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected </CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#Enum()">Enum</A></B>()</CODE>
-
- <BR>
- Initialize the Enum, using default integer and string values.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected </CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#Enum(int)">Enum</A></B>(int integer)</CODE>
-
- <BR>
- Initialize the Enum with an integer value.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected </CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#Enum(int, java.lang.String)">Enum</A></B>(int integer,
- java.lang.String label)</CODE>
-
- <BR>
- Initialize the Enum with an integer value and a default label.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected </CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#Enum(java.lang.String)">Enum</A></B>(java.lang.String string)</CODE>
-
- <BR>
- Initialize the Enum with a string value.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected </CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#Enum(java.lang.String, java.lang.String)">Enum</A></B>(java.lang.String string,
- java.lang.String label)</CODE>
-
- <BR>
- Initialize the Enum with a string value and a default label.</TD>
- </TR>
- </TABLE>
-
- <!-- ========== METHOD SUMMARY =========== -->
-
- <A NAME="method_summary"><!-- --></A>
- <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
- <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
- <TD COLSPAN=2><FONT SIZE="+2">
- <B>Method Summary</B></FONT></TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>static <A HREF="../../../com/plotnix/enum/Enum.html">Enum</A>[]</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#enum(java.lang.Class)">enum</A></B>(java.lang.Class enumClass)</CODE>
-
- <BR>
- Returns an array of all Enums of the specified class in the order
- they were created.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>static <A HREF="../../../com/plotnix/enum/Enum.html">Enum</A></CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#enum(java.lang.Class, int)">enum</A></B>(java.lang.Class enumClass,
- int integer)</CODE>
-
- <BR>
- Returns the Enum of the specified class that has the specified integer value,
- or null if there is no such Enum.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>static <A HREF="../../../com/plotnix/enum/Enum.html">Enum</A></CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#enum(java.lang.Class, java.lang.String)">enum</A></B>(java.lang.Class enumClass,
- java.lang.String string)</CODE>
-
- <BR>
- Returns the Enum of the specified class that has the specified st,
- or null if there is no such Enum.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected static void</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#initIntegerEnum(java.lang.Class)">initIntegerEnum</A></B>(java.lang.Class enumClass)</CODE>
-
- <BR>
- </TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE> int</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#intValue()">intValue</A></B>()</CODE>
-
- <BR>
- Returns the Enum's integer value.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected static void</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#loadEnum(java.lang.Class)">loadEnum</A></B>(java.lang.Class enumClass)</CODE>
-
- <BR>
- Loads properties from an <i>enumClass</i>.properties resource file.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected static void</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#loadIntegerEnum(java.lang.Class)">loadIntegerEnum</A></B>(java.lang.Class enumClass)</CODE>
-
- <BR>
- Loads properties from an <i>enumClass</i>.properties resource file.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE>protected java.lang.Object</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#readResolve()">readResolve</A></B>()</CODE>
-
- <BR>
- Ensures uniqueness of Enums during deserialization.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE> java.lang.String</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#stringValue()">stringValue</A></B>()</CODE>
-
- <BR>
- Returns the string value of this Enum.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE> java.lang.String</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#toString()">toString</A></B>()</CODE>
-
- <BR>
- Returns this Enum's human readable description in the default locale.</TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
- <CODE> java.lang.String</CODE></FONT></TD>
- <TD><CODE><B><A HREF="../../../com/plotnix/enum/Enum.html#toString(java.util.Locale)">toString</A></B>(java.util.Locale locale)</CODE>
-
- <BR>
- Returns this Enum's human readable description in the specified locale.</TD>
- </TR>
- </TABLE>
- <A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
- <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
- <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
- <TD><B>Methods inherited from class java.lang.Object</B></TD>
- </TR>
- <TR BGCOLOR="white" CLASS="TableRowColor">
- <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
- </TR>
- </TABLE>
-
- <P>
-
- <!-- ============ FIELD DETAIL =========== -->
-
-
- <!-- ========= CONSTRUCTOR DETAIL ======== -->
-
- <A NAME="constructor_detail"><!-- --></A>
- <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
- <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
- <TD COLSPAN=1><FONT SIZE="+2">
- <B>Constructor Detail</B></FONT></TD>
- </TR>
- </TABLE>
-
- <A NAME="Enum()"><!-- --></A><H3>
- Enum</H3>
- <PRE>
- protected <B>Enum</B>()</PRE>
- <DL>
- <DD>Initialize the Enum, using default integer and string values.</DL>
- <HR>
-
- <A NAME="Enum(java.lang.String)"><!-- --></A><H3>
- Enum</H3>
- <PRE>
- protected <B>Enum</B>(java.lang.String string)</PRE>
- <DL>
- <DD>Initialize the Enum with a string value. An integer value is assigned automatically.</DL>
- <HR>
-
- <A NAME="Enum(java.lang.String, java.lang.String)"><!-- --></A><H3>
- Enum</H3>
- <PRE>
- protected <B>Enum</B>(java.lang.String string,
- java.lang.String label)</PRE>
- <DL>
- <DD>Initialize the Enum with a string value and a default label.
- An integer value is assigned automatically.</DL>
- <HR>
-
- <A NAME="Enum(int)"><!-- --></A><H3>
- Enum</H3>
- <PRE>
- protected <B>Enum</B>(int integer)</PRE>
- <DL>
- <DD>Initialize the Enum with an integer value. A string value will be produced
- automatically.</DL>
- <HR>
-
- <A NAME="Enum(int, java.lang.String)"><!-- --></A><H3>
- Enum</H3>
- <PRE>
- protected <B>Enum</B>(int integer,
- java.lang.String label)</PRE>
- <DL>
- <DD>Initialize the Enum with an integer value and a default label.
- A string value will be produced automatically.</DL>
-
- <!-- ============ METHOD DETAIL ========== -->
-
- <A NAME="method_detail"><!-- --></A>
- <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
- <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
- <TD COLSPAN=1><FONT SIZE="+2">
- <B>Method Detail</B></FONT></TD>
- </TR>
- </TABLE>
-
- <A NAME="stringValue()"><!-- --></A><H3>
- stringValue</H3>
- <PRE>
- public java.lang.String <B>stringValue</B>()</PRE>
- <DL>
- <DD>Returns the string value of this Enum.
- Depending on how the Enum was created, the method behaves differently:
- <ui>
- <li>If the constant was created as a <code>public static Enum</code>,
- the name of that field is returned.</li>
- <li>If the constant was declared as a <code>public static int</code>,
- and registered with <code>initIntegerEnum</code>,
- the name of that integer field is returned.</li>
- <li>If the constant was loaded from a .properties file, the
- corresponding property name is returned.</li>
- </ul><DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="intValue()"><!-- --></A><H3>
- intValue</H3>
- <PRE>
- public int <B>intValue</B>()</PRE>
- <DL>
- <DD>Returns the Enum's integer value. An Enum can be allocated with an explicitly
- specified integer value. If the integer value is not specified, the Enum's constructor
- gives it a default one, which is computed by adding one to the
- integer value of the previous Enum of the same type.<DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="toString()"><!-- --></A><H3>
- toString</H3>
- <PRE>
- public java.lang.String <B>toString</B>()</PRE>
- <DL>
- <DD>Returns this Enum's human readable description in the default locale.<DD><DL>
- <DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="toString(java.util.Locale)"><!-- --></A><H3>
- toString</H3>
- <PRE>
- public java.lang.String <B>toString</B>(java.util.Locale locale)</PRE>
- <DL>
- <DD>Returns this Enum's human readable description in the specified locale.
- If the resource bundle is not found or does not have a value for this Enum,
- the value of the default label specified during construction is returned.
- If that value was not unspecified, the Enum's string value is returned.<DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="enum(java.lang.Class)"><!-- --></A><H3>
- enum</H3>
- <PRE>
- public static <A HREF="../../../com/plotnix/enum/Enum.html">Enum</A>[] <B>enum</B>(java.lang.Class enumClass)</PRE>
- <DL>
- <DD>Returns an array of all Enums of the specified class in the order
- they were created.<DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="enum(java.lang.Class, java.lang.String)"><!-- --></A><H3>
- enum</H3>
- <PRE>
- public static <A HREF="../../../com/plotnix/enum/Enum.html">Enum</A> <B>enum</B>(java.lang.Class enumClass,
- java.lang.String string)</PRE>
- <DL>
- <DD>Returns the Enum of the specified class that has the specified st,
- or null if there is no such Enum.<DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="enum(java.lang.Class, int)"><!-- --></A><H3>
- enum</H3>
- <PRE>
- public static <A HREF="../../../com/plotnix/enum/Enum.html">Enum</A> <B>enum</B>(java.lang.Class enumClass,
- int integer)</PRE>
- <DL>
- <DD>Returns the Enum of the specified class that has the specified integer value,
- or null if there is no such Enum.<DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="initIntegerEnum(java.lang.Class)"><!-- --></A><H3>
- initIntegerEnum</H3>
- <PRE>
- protected static void <B>initIntegerEnum</B>(java.lang.Class enumClass)</PRE>
- <DL>
- <DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="loadEnum(java.lang.Class)"><!-- --></A><H3>
- loadEnum</H3>
- <PRE>
- protected static void <B>loadEnum</B>(java.lang.Class enumClass)</PRE>
- <DL>
- <DD>Loads properties from an <i>enumClass</i>.properties resource file.
- Uses property names as string values of the Enums.<DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="loadIntegerEnum(java.lang.Class)"><!-- --></A><H3>
- loadIntegerEnum</H3>
- <PRE>
- protected static void <B>loadIntegerEnum</B>(java.lang.Class enumClass)</PRE>
- <DL>
- <DD>Loads properties from an <i>enumClass</i>.properties resource file.
- Uses property names as integer values of the Enums.<DD><DL>
- </DL>
- </DD>
- </DL>
- <HR>
-
- <A NAME="readResolve()"><!-- --></A><H3>
- readResolve</H3>
- <PRE>
- protected java.lang.Object <B>readResolve</B>()
- throws java.io.ObjectStreamException</PRE>
- <DL>
- <DD>Ensures uniqueness of Enums during deserialization. Finds an Enum
- that is already declared with the same integer value and returns
- that Enum instead of the current instance.<DD><DL>
- </DL>
- </DD>
- </DL>
- <!-- ========= END OF CLASS DATA ========= -->
- <HR>
-
- <!-- ========== START OF NAVBAR ========== -->
- <A NAME="navbar_bottom"><!-- --></A>
- <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
- <TR>
- <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
- <A NAME="navbar_bottom_firstrow"><!-- --></A>
- <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
- <TR ALIGN="center" VALIGN="top">
- <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">
- PREV CLASS
- NEXT CLASS</FONT></TD>
- <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../../../index.html" TARGET="_top"><B>FRAMES</B></A>
- <A HREF="Enum.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
- </TR>
- <TR>
- <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
- SUMMARY: INNER | 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>
- <!-- =========== END OF NAVBAR =========== -->
-
- <HR>
- Copyright (c) 2001 - PLOTNIX, Inc
- </BODY>
- </HTML>