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

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

*** 23,41 **** * questions. */ package com.sun.javafx.scene.layout.region; ! import com.sun.javafx.css.converters.EnumConverter; import javafx.css.ParsedValue; ! import com.sun.javafx.css.StyleConverterImpl; import javafx.scene.layout.BackgroundRepeat; import javafx.scene.text.Font; /** */ ! public final class RepeatStructConverter extends StyleConverterImpl<ParsedValue<String, BackgroundRepeat>[][], RepeatStruct[]> { private static final RepeatStructConverter REPEAT_STRUCT_CONVERTER = new RepeatStructConverter(); public static RepeatStructConverter getInstance() { --- 23,41 ---- * questions. */ package com.sun.javafx.scene.layout.region; ! import javafx.css.converter.EnumConverter; import javafx.css.ParsedValue; ! import javafx.css.StyleConverter; import javafx.scene.layout.BackgroundRepeat; import javafx.scene.text.Font; /** */ ! public final class RepeatStructConverter extends StyleConverter<ParsedValue<String, BackgroundRepeat>[][], RepeatStruct[]> { private static final RepeatStructConverter REPEAT_STRUCT_CONVERTER = new RepeatStructConverter(); public static RepeatStructConverter getInstance() {