home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-18 | 1.1 KB | 46 lines |
- package symantec.itools.awt.util.edit;
-
-
- /**
- *
- * Creates a formatted text field for a US Long Distance phone number.
- * USLongDistPhoneNumber limits the type of text that can be entered in the text
- * box to a US long distance phone number (ten-digit number).
- * Text formatting logic is applied to the user input.
- * If the text field already contains text, the user can select the default text
- * and delete or edit it.
- *
- *
- * @see symantec.itools.awt.FormattedTextField
- *
- * @version 1.0, Nov 26, 1996
- *
- * @author Symantec
- *
- */
-
-
- public class USLongDistPhoneNumber
- extends LongDistPhoneNumber
- {
- /**
- * Create US long distance phone number text field.
- * This is a formatted text field
- * with the following format: /(999/)/ 999/-9999
- */
-
- public USLongDistPhoneNumber()
- {
- super(14);
-
- super.setMask("/(999/)/ 999/-9999");
- }
- /**
- * Takes no action. Overrides setMask in FormattedTextField to prevent
- * alteration of the phone number mask.
- */
- public void setMask(String s)
- {
- }
- }
-