< prev index next >

src/java.desktop/share/classes/javax/swing/text/MaskFormatter.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 197,207 **** /** * Creates a <code>MaskFormatter</code> with the specified mask. * A <code>ParseException</code> * will be thrown if <code>mask</code> is an invalid mask. ! * * @throws ParseException if mask does not contain valid mask characters */ public MaskFormatter(String mask) throws ParseException { this(); setMask(mask); --- 197,207 ---- /** * Creates a <code>MaskFormatter</code> with the specified mask. * A <code>ParseException</code> * will be thrown if <code>mask</code> is an invalid mask. ! * @param mask the mask * @throws ParseException if mask does not contain valid mask characters */ public MaskFormatter(String mask) throws ParseException { this(); setMask(mask);
*** 209,218 **** --- 209,219 ---- /** * Sets the mask dictating the legal characters. * This will throw a <code>ParseException</code> if <code>mask</code> is * not valid. + * @param mask the mask * * @throws ParseException if mask does not contain valid mask characters */ public void setMask(String mask) throws ParseException { this.mask = mask;
< prev index next >