modules/graphics/src/test/java/javafx/css/Node_cssStyleMap_Test.java

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

*** 21,60 **** * 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; - import com.sun.javafx.css.converters.FontConverter; - import com.sun.javafx.css.converters.SizeConverter; - import com.sun.javafx.tk.Toolkit; import java.util.ArrayList; import java.util.Collections; - import java.util.HashMap; import java.util.List; import java.util.Map; import javafx.beans.property.Property; - import javafx.collections.FXCollections; - import javafx.collections.MapChangeListener; - import javafx.css.CssMetaData; - import javafx.css.ParsedValue; - import javafx.css.StyleOrigin; - import javafx.css.Styleable; - import javafx.css.StyleableProperty; import javafx.scene.Group; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; import javafx.scene.text.Font; import javafx.scene.text.Text; ! import javafx.stage.Stage; import static org.junit.Assert.*; - import javafx.util.Pair; import org.junit.Ignore; import org.junit.Test; @Ignore public class Node_cssStyleMap_Test { --- 21,53 ---- * 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; ! ! import com.sun.javafx.css.ParsedValueImpl; ! import com.sun.javafx.css.StyleManager; ! import javafx.css.converter.FontConverter; ! import javafx.css.converter.SizeConverter; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Map; import javafx.beans.property.Property; import javafx.scene.Group; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; import javafx.scene.text.Font; import javafx.scene.text.Text; ! import static org.junit.Assert.*; import org.junit.Ignore; import org.junit.Test; @Ignore public class Node_cssStyleMap_Test {