/**
* @(#)FormattedTextField.java 1.34 1998-01-18 [often generated by version control system]
*
* Comments about what the class does go here. No special tag.
*
* @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.
* -- The method must be visible even if you don't actually call it.
*
* @see <a href="http://mindprod.com/jgloss/jgloss.html#TOP">Java & Internet Glossary</a>
* -- must have no extra text, e.g. no trailing dot.
*
* @see java.awt.Component#repaint
* -- only if method has no parms.
*
* -- note you may not add any comments to the end of an @see. This is too bad.
* -- You want to see why it is important or what it is for.
* @see java.lang.Math#min(int,int) [note the return type is missing, no spaces]
* @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}.
*
*/