modules/controls/src/main/java/com/sun/javafx/scene/control/DoubleField.java

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

@@ -21,21 +21,21 @@
  * 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.scene.control.skin;
+package com.sun.javafx.scene.control;
 
-import com.sun.javafx.scene.control.skin.InputField;
 import javafx.beans.property.DoubleProperty;
 import javafx.beans.property.SimpleDoubleProperty;
 import javafx.scene.control.Skin;
+import com.sun.javafx.scene.control.skin.DoubleFieldSkin;
 
 /**
  *
  */
-class DoubleField extends InputField {
+public class DoubleField extends InputField {
     /**
      * The value of the DoubleField. If null, the value will be treated as "0", but
      * will still actually be null.
      */
     private DoubleProperty value = new SimpleDoubleProperty(this, "value");