jdk/src/share/classes/javax/swing/text/html/CSSBorder.java
changeset 23697 e556a715949f
parent 9035 1255eb81cc2f
equal deleted inserted replaced
23696:7deff68428ef 23697:e556a715949f
     1 /*
     1 /*
     2  * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2007, 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
    48 /**
    48 /**
    49  * CSS-style borders for HTML elements.
    49  * CSS-style borders for HTML elements.
    50  *
    50  *
    51  * @author Sergey Groznyh
    51  * @author Sergey Groznyh
    52  */
    52  */
       
    53 @SuppressWarnings("serial") // Superclass is not serializable across versions
    53 class CSSBorder extends AbstractBorder {
    54 class CSSBorder extends AbstractBorder {
    54 
    55 
    55     /** Indices for the attribute groups.  */
    56     /** Indices for the attribute groups.  */
    56     final static int COLOR = 0, STYLE = 1, WIDTH = 2;
    57     final static int COLOR = 0, STYLE = 1, WIDTH = 2;
    57 
    58