jdk/src/share/classes/javax/swing/text/NumberFormatter.java
changeset 22574 7f8ce0c8c20a
parent 21278 ef8a3a2a72f2
child 25193 187a455af8f8
equal deleted inserted replaced
22573:8f0344f13b7f 22574:7f8ce0c8c20a
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    89  * has been added to the <code>java.beans</code> package.
    89  * has been added to the <code>java.beans</code> package.
    90  * Please see {@link java.beans.XMLEncoder}.
    90  * Please see {@link java.beans.XMLEncoder}.
    91  *
    91  *
    92  * @since 1.4
    92  * @since 1.4
    93  */
    93  */
       
    94 @SuppressWarnings("serial") // Same-version serialization only
    94 public class NumberFormatter extends InternationalFormatter {
    95 public class NumberFormatter extends InternationalFormatter {
    95     /** The special characters from the Format instance. */
    96     /** The special characters from the Format instance. */
    96     private String specialChars;
    97     private String specialChars;
    97 
    98 
    98     /**
    99     /**