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

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

@@ -23,12 +23,12 @@
  * questions.
  */
 
 package com.sun.javafx.scene.layout.region;
 
-import com.sun.javafx.css.StyleConverterImpl;
 import javafx.css.ParsedValue;
+import javafx.css.StyleConverter;
 import javafx.scene.layout.BackgroundPosition;
 import javafx.scene.text.Font;
 
 /**
  * background-position: <bg-position>

@@ -36,11 +36,11 @@
  *   [ [ <size> | left | center | right ] [ <size> | top | center | bottom ]? ]
  *   | [ [ center | [ left | right ] <size>? ] || [ center | [ top | bottom ] <size>? ]
  * ]
  * @see <a href="http://www.w3.org/TR/css3-background/#the-background-position">background-position</a>
  */
-public final class LayeredBackgroundPositionConverter extends StyleConverterImpl<ParsedValue<ParsedValue[], BackgroundPosition>[], BackgroundPosition[]> {
+public final class LayeredBackgroundPositionConverter extends StyleConverter<ParsedValue<ParsedValue[], BackgroundPosition>[], BackgroundPosition[]> {
     private static final LayeredBackgroundPositionConverter LAYERED_BACKGROUND_POSITION_CONVERTER =
             new LayeredBackgroundPositionConverter();
 
     public static LayeredBackgroundPositionConverter getInstance() {
         return LAYERED_BACKGROUND_POSITION_CONVERTER;