modules/controls/src/main/java/javafx/scene/control/TableColumnBase.java

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

*** 48,68 **** import javafx.event.EventHandler; import javafx.event.EventTarget; import javafx.event.EventType; import javafx.scene.Node; - import com.sun.javafx.scene.control.skin.Utils; import com.sun.javafx.event.EventHandlerManager; import java.util.HashMap; import javafx.beans.property.ReadOnlyDoubleProperty; import javafx.beans.property.ReadOnlyDoubleWrapper; import javafx.beans.property.ReadOnlyObjectProperty; import javafx.beans.property.ReadOnlyObjectWrapper; import javafx.beans.property.SimpleDoubleProperty; import javafx.beans.value.ObservableValue; import javafx.collections.ObservableMap; /** * Table-like controls (such as {@link TableView} and {@link TreeTableView}) are * made up of zero or more instances of a concrete TableColumnBase subclass * ({@link TableColumn} and {@link TreeTableColumn}, respectively). Each --- 48,68 ---- import javafx.event.EventHandler; import javafx.event.EventTarget; import javafx.event.EventType; import javafx.scene.Node; import com.sun.javafx.event.EventHandlerManager; import java.util.HashMap; import javafx.beans.property.ReadOnlyDoubleProperty; import javafx.beans.property.ReadOnlyDoubleWrapper; import javafx.beans.property.ReadOnlyObjectProperty; import javafx.beans.property.ReadOnlyObjectWrapper; import javafx.beans.property.SimpleDoubleProperty; import javafx.beans.value.ObservableValue; import javafx.collections.ObservableMap; + import com.sun.javafx.scene.control.skin.Utils; /** * Table-like controls (such as {@link TableView} and {@link TreeTableView}) are * made up of zero or more instances of a concrete TableColumnBase subclass * ({@link TableColumn} and {@link TreeTableColumn}, respectively). Each