< prev index next >

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

Print this page

        

*** 894,907 **** public final Callback<ResizeFeatures, Boolean> getColumnResizePolicy() { return columnResizePolicy == null ? UNCONSTRAINED_RESIZE_POLICY : columnResizePolicy.get(); } /** ! * This is the function called when the user completes a column-resize ! * operation. The two most common policies are available as static functions ! * in the TableView class: {@link #UNCONSTRAINED_RESIZE_POLICY} and ! * {@link #CONSTRAINED_RESIZE_POLICY}. * @return columnResizePolicy property */ public final ObjectProperty<Callback<ResizeFeatures, Boolean>> columnResizePolicyProperty() { if (columnResizePolicy == null) { columnResizePolicy = new SimpleObjectProperty<Callback<ResizeFeatures, Boolean>>(this, "columnResizePolicy", UNCONSTRAINED_RESIZE_POLICY) { --- 894,906 ---- public final Callback<ResizeFeatures, Boolean> getColumnResizePolicy() { return columnResizePolicy == null ? UNCONSTRAINED_RESIZE_POLICY : columnResizePolicy.get(); } /** ! * Called when the user completes a column-resize operation. The two most common ! * policies are available as static functions in the TableView class: ! * {@link #UNCONSTRAINED_RESIZE_POLICY} and {@link #CONSTRAINED_RESIZE_POLICY}. * @return columnResizePolicy property */ public final ObjectProperty<Callback<ResizeFeatures, Boolean>> columnResizePolicyProperty() { if (columnResizePolicy == null) { columnResizePolicy = new SimpleObjectProperty<Callback<ResizeFeatures, Boolean>>(this, "columnResizePolicy", UNCONSTRAINED_RESIZE_POLICY) {
< prev index next >