jdk/src/share/classes/javax/swing/text/TabSet.java
changeset 22574 7f8ce0c8c20a
parent 20458 f2423fb3fd19
equal deleted inserted replaced
22573:8f0344f13b7f 22574:7f8ce0c8c20a
     1 /*
     1 /*
     2  * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1998, 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
    41  * has been added to the <code>java.beans</code> package.
    41  * has been added to the <code>java.beans</code> package.
    42  * Please see {@link java.beans.XMLEncoder}.
    42  * Please see {@link java.beans.XMLEncoder}.
    43  *
    43  *
    44  * @author  Scott Violet
    44  * @author  Scott Violet
    45  */
    45  */
       
    46 @SuppressWarnings("serial") // Same-version serialization only
    46 public class TabSet implements Serializable
    47 public class TabSet implements Serializable
    47 {
    48 {
    48     /** TabStops this TabSet contains. */
    49     /** TabStops this TabSet contains. */
    49     private TabStop[]              tabs;
    50     private TabStop[]              tabs;
    50     /**
    51     /**