Java Swing Text Format createFormatterMask(final String mask)

Here you can find the source of createFormatterMask(final String mask)

Description

create Formatter Mask

License

Open Source License

Parameter

Parameter Description
mask a parameter

Declaration

public static MaskFormatter createFormatterMask(final String mask) 

Method Source Code

//package com.java2s;
/* Copyright (C) 2015, University of Kansas Center for Research
 * // www .  ja v a 2  s .  c  o m
 * Specify Software Project, specify@ku.edu, Biodiversity Institute,
 * 1345 Jayhawk Boulevard, Lawrence, Kansas, 66045, USA
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/

import javax.swing.text.MaskFormatter;

public class Main {
    /**
     * @param mask
     * @return
     */
    public static MaskFormatter createFormatterMask(final String mask) {
        MaskFormatter maskFormatter = null;
        try {
            maskFormatter = new MaskFormatter(mask);

        } catch (java.text.ParseException exc) {
            System.err.println("formatter is bad: " + exc.getMessage());
            System.exit(-1);
        }
        return maskFormatter;
    }
}

Related

  1. buildIntegerField(int min, int max)
  2. checkBoundaryCondition(final int pos, final Position.Bias b0, final Position.Bias[] biasRet, final Element neighboringElement, final boolean isLTR, final boolean toWest, final int start, final int length, final int startParagraph, final int endParagraph, final boolean nextIsLTR)
  3. createFormattedDateField(DateFormat dfFormat, boolean bOverwriteMode)
  4. createFormatter(String s)
  5. createIntegerFormatter(int minimum, int maximum)
  6. createMaskFormatter(final String s)
  7. dataFormatada(Calendar cal)
  8. findElementUp(String name, Element start)