modules/graphics/src/main/java/com/sun/javafx/scene/layout/region/LayeredBorderStyleConverter.java

Print this page
rev 9240 : 8076423: JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization


  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.scene.layout.region;
  27 
  28 import javafx.scene.layout.BorderStrokeStyle;
  29 import javafx.scene.text.Font;
  30 import javafx.css.ParsedValue;
  31 import com.sun.javafx.css.StyleConverterImpl;
  32 
  33 /**
  34  * User: richardbair
  35  * Date: 8/9/12
  36  * Time: 4:53 PM
  37  */
  38 /*
  39 * border-style: <border-style> [, <border-style>]*
  40 * where <border-style> = <dash-style> [phase(<number>)]? [centered | inside | outside]?
  41 *                        [line-join [miter <number> | bevel | round]]?
  42 *                        [line-cap [square | butt | round]]?
  43 * where <dash-style> = none | solid | dotted | dashed | segments(<size>[, <size>]+) ]
  44 */
  45 public final class LayeredBorderStyleConverter
  46         extends StyleConverterImpl<ParsedValue<ParsedValue<ParsedValue[],BorderStrokeStyle>[], BorderStrokeStyle[]>[], BorderStrokeStyle[][]> {
  47 
  48     /**
  49      * Convert layers of border style values to an array of BorderStyle[], where
  50      * each layer contains one BorderStyle element per border.
  51      */
  52     private static final LayeredBorderStyleConverter LAYERED_BORDER_STYLE_CONVERTER =
  53             new LayeredBorderStyleConverter();
  54 
  55     public static LayeredBorderStyleConverter getInstance() {
  56         return LAYERED_BORDER_STYLE_CONVERTER;
  57     }
  58 
  59     private LayeredBorderStyleConverter() {
  60         super();
  61     }
  62 
  63     @Override
  64     public BorderStrokeStyle[][]
  65     convert(ParsedValue<ParsedValue<ParsedValue<ParsedValue[], BorderStrokeStyle>[],BorderStrokeStyle[]>[], BorderStrokeStyle[][]> value, Font font) {
  66 


  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.javafx.scene.layout.region;
  27 
  28 import javafx.scene.layout.BorderStrokeStyle;
  29 import javafx.scene.text.Font;
  30 import javafx.css.ParsedValue;
  31 import javafx.css.StyleConverter;
  32 
  33 /**
  34  * User: richardbair
  35  * Date: 8/9/12
  36  * Time: 4:53 PM
  37  */
  38 /*
  39 * border-style: <border-style> [, <border-style>]*
  40 * where <border-style> = <dash-style> [phase(<number>)]? [centered | inside | outside]?
  41 *                        [line-join [miter <number> | bevel | round]]?
  42 *                        [line-cap [square | butt | round]]?
  43 * where <dash-style> = none | solid | dotted | dashed | segments(<size>[, <size>]+) ]
  44 */
  45 public final class LayeredBorderStyleConverter
  46         extends StyleConverter<ParsedValue<ParsedValue<ParsedValue[],BorderStrokeStyle>[], BorderStrokeStyle[]>[], BorderStrokeStyle[][]> {
  47 
  48     /**
  49      * Convert layers of border style values to an array of BorderStyle[], where
  50      * each layer contains one BorderStyle element per border.
  51      */
  52     private static final LayeredBorderStyleConverter LAYERED_BORDER_STYLE_CONVERTER =
  53             new LayeredBorderStyleConverter();
  54 
  55     public static LayeredBorderStyleConverter getInstance() {
  56         return LAYERED_BORDER_STYLE_CONVERTER;
  57     }
  58 
  59     private LayeredBorderStyleConverter() {
  60         super();
  61     }
  62 
  63     @Override
  64     public BorderStrokeStyle[][]
  65     convert(ParsedValue<ParsedValue<ParsedValue<ParsedValue[], BorderStrokeStyle>[],BorderStrokeStyle[]>[], BorderStrokeStyle[][]> value, Font font) {
  66