modules/graphics/src/main/java/javafx/css/converter/LadderConverter.java

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

*** 21,39 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package com.sun.javafx.css.parser; - import com.sun.javafx.css.StyleConverterImpl; import javafx.css.ParsedValue; import javafx.scene.paint.Color; import javafx.scene.paint.Stop; import javafx.scene.text.Font; ! public final class LadderConverter extends StyleConverterImpl<ParsedValue[], Color> { // lazy, thread-safe instatiation private static class Holder { static final LadderConverter INSTANCE = new LadderConverter(); } --- 21,39 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package javafx.css.converter; import javafx.css.ParsedValue; + import javafx.css.StyleConverter; import javafx.scene.paint.Color; import javafx.scene.paint.Stop; import javafx.scene.text.Font; ! public final class LadderConverter extends StyleConverter<ParsedValue[], Color> { // lazy, thread-safe instatiation private static class Holder { static final LadderConverter INSTANCE = new LadderConverter(); }