// class comments
/** @(#)FormattedTextField.java 1.34 1998-01-18
  *
  * @author Roedy Green
  *
  * @inheritDoc [inherit everything from base or interface. Has no parameters!]
  *
  * @version 1.34 1998-01-18
  *
  * @see "Design Patterns by Gamma et. al"
  * -- no link generated.
  *
  * @see "com.mindprod.http.Fetch"
  * -- no link generated because the Javadoc for that class is not included.
  *
  * @see #otherMethod(String,int)
  * -- You must specify the types of any parms.
  * -- You may NOT add text about WHY you should see this other method.
  *
  * @see <a href="http://mindprod.com/jgloss/jgloss.html#TOP">Java &amp; Internet Glossary</a>
  * -- must have no extra text, e.g. no trailing dot.
  *
  * @see java.awt.Component#repaint
  * -- only if method has no parms.
  *
  * @see java.lang.Math#min(int,int) [note lack of #]
  * @see java.util.Comparator [note lack of #]
  * @see OtherClass [note lack of #]
  *
  * @since JDK1.5
  * @since 2000-01-02 [when the method was first written.]
  *
  * @serial exclude [this class is irrevelant to serialization docs]
  * @serial include [this class is relevant to serialization docs]
  * @serialData First reads in the version number then ...
  * @serialField x1  Integer [custom serialize non-class objects]
  *
  * @deprecated Noreplacement
  * @deprecated Replaced by otherMethod(int)
  *
  * Embeddable commands:
  * The smallest allowable purchase is {@value #MIN_PURCHASE} [shows static final value].
  * Refer to {@linkplain add() the overridden method}. [in plain font]
  * This Collection works much like an {@link java.util.ArrayList}. [same parms as @see]
  * This master index covers {@docRoot}.
  *
  */

// method comments

/**
  * @inheritDoc [inherit everything from base or interface. Has no parameters!]
  *
  * @override [This method is overriding intentionally. If not, it is an error.]
  *           [!!! Don't confuse with the @Override (capital O) annotation. !!!]
  *
  * @param x <b>pixels</b> right of the origin.
  *
  * @return number of oranges
  *
  * @throws IOException  (formerly called @exception)
  *
  * @version 1.34 1998-01-18
  *
  * @see "Design Patterns by Gamma et. al"
  * -- no link generated.
  *
  * @see "com.mindprod.http.Fetch"
  * -- no link generated because the Javadoc for that class is not included.
  *
  * @see #otherMethod(String,int)
  * -- You must specify the types of any parms.
  * -- You may NOT add text about WHY you should see this other method.
  *
  * @see <a href="http://mindprod.com/jgloss/jgloss.html#TOP">Java &amp; Internet Glossary</a>
  * -- must have no extra text, e.g. no trailing dot.
  *
  * @see java.awt.Component#repaint
  * -- only if method has no parms.
  *
  * @see java.lang.Math#min(int,int) [note lack of #]
  * @see java.util.Comparator [note lack of #]
  * @see OtherClass [note lack of #]
  *
  * @since 1.5 [Sun uses the to mark which JDK this method debuted.]
  * @since JDK1.5
  * @since 2000-01-02 [when the method was first written.]
  *
  * @serial exclude [this method is irrevelant to serialization docs]
  * @serial include [this method is relevant to serialization docs]
  * @serialData First reads in the version number then ...
  * @serialField x1  Integer [custom serialize non-class objects]
  *
  * Embeddable commands:
  * @param {@inheritDoc}  [inherits from base method]
  * @return {@inheritDoc} [inherits from base method]
  * @throws {@inheritDoc} [inherits from base method]
  * The smallest allowable purchase is {@value #MIN_PURCHASE} [shows static final value].
  * Refer to {@linkplain add() the overridden method}. [in plain font]
  * This method works much like the one in {@link java.util.ArrayList}. [same parms as @see]
  * The master index covers {@docRoot}.
  *
  * no @author or @version
  */