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

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


   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  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.css.ParsedValue;
  29 import com.sun.javafx.css.StyleConverterImpl;
  30 import javafx.scene.paint.Paint;
  31 import javafx.scene.text.Font;
  32 
  33 /*
  34  * border-color <paint> | <paint> <paint> <paint> <paint> [ , [<paint> | <paint> <paint> <paint> <paint>] ]*        null
  35  */
  36 public final class LayeredBorderPaintConverter extends StyleConverterImpl<ParsedValue<ParsedValue<?,Paint>[],Paint[]>[], Paint[][]> {
  37     /**
  38      * Convert layers of border paint values to an array of Paint[], where
  39      * each layer contains one Paint element per border.
  40      */
  41     private static final LayeredBorderPaintConverter LAYERED_BORDER_PAINT_CONVERTER =
  42             new LayeredBorderPaintConverter();
  43 
  44     public static LayeredBorderPaintConverter getInstance() {
  45         return LAYERED_BORDER_PAINT_CONVERTER;
  46     }
  47 
  48     private LayeredBorderPaintConverter() {
  49         super();
  50     }
  51 
  52     @Override
  53     public Paint[][] convert(ParsedValue<ParsedValue<ParsedValue<?,Paint>[],Paint[]>[], Paint[][]> value, Font font) {
  54         ParsedValue<ParsedValue<?,Paint>[],Paint[]>[] layers = value.getValue();
  55         Paint[][] paints = new Paint[layers.length][0];
  56         for(int layer=0; layer<layers.length; layer++) {


   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  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.css.ParsedValue;
  29 import javafx.css.StyleConverter;
  30 import javafx.scene.paint.Paint;
  31 import javafx.scene.text.Font;
  32 
  33 /*
  34  * border-color <paint> | <paint> <paint> <paint> <paint> [ , [<paint> | <paint> <paint> <paint> <paint>] ]*        null
  35  */
  36 public final class LayeredBorderPaintConverter extends StyleConverter<ParsedValue<ParsedValue<?,Paint>[],Paint[]>[], Paint[][]> {
  37     /**
  38      * Convert layers of border paint values to an array of Paint[], where
  39      * each layer contains one Paint element per border.
  40      */
  41     private static final LayeredBorderPaintConverter LAYERED_BORDER_PAINT_CONVERTER =
  42             new LayeredBorderPaintConverter();
  43 
  44     public static LayeredBorderPaintConverter getInstance() {
  45         return LAYERED_BORDER_PAINT_CONVERTER;
  46     }
  47 
  48     private LayeredBorderPaintConverter() {
  49         super();
  50     }
  51 
  52     @Override
  53     public Paint[][] convert(ParsedValue<ParsedValue<ParsedValue<?,Paint>[],Paint[]>[], Paint[][]> value, Font font) {
  54         ParsedValue<ParsedValue<?,Paint>[],Paint[]>[] layers = value.getValue();
  55         Paint[][] paints = new Paint[layers.length][0];
  56         for(int layer=0; layer<layers.length; layer++) {