Edit C:\Program Files\Java\jdk1.8.0_121\javafx\scene\control\TableSelectionModel.java
/* * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.control; import javafx.beans.property.BooleanProperty; import javafx.beans.property.SimpleBooleanProperty; /** * The abstract base class for MultipleSelectionModel implementations that are used within * table-like controls (most notably {@link TableView} and {@link TreeTableView}. * * @param <T> The type of the underlying data model for the UI control. * @since JavaFX 8.0 */ public abstract class TableSelectionModel<T> extends MultipleSelectionModelBase<T> { /** * Convenience function which tests whether the given row and column index * is currently selected in this table instance. */ public abstract boolean isSelected(int row, TableColumnBase<T,?> column); /** * Selects the cell at the given row/column intersection. */ public abstract void select(int row, TableColumnBase<T,?> column); /** * Clears all selection, and then selects the cell at the given row/column * intersection. */ public abstract void clearAndSelect(int row, TableColumnBase<T,?> column); /** * Removes selection from the specified row/column position (in view indexes). * If this particular cell (or row if the column value is -1) is not selected, * nothing happens. */ public abstract void clearSelection(int row, TableColumnBase<T,?> column); /** * Selects the cell to the left of the currently selected cell. */ public abstract void selectLeftCell(); /** * Selects the cell to the right of the currently selected cell. */ public abstract void selectRightCell(); /** * Selects the cell directly above the currently selected cell. */ public abstract void selectAboveCell(); /** * Selects the cell directly below the currently selected cell. */ public abstract void selectBelowCell(); /** * Selects the cells in the range (minRow, minColumn) to (maxRow, maxColumn), * inclusive. */ public abstract void selectRange(int minRow, TableColumnBase<T,?> minColumn, int maxRow, TableColumnBase<T,?> maxColumn); /** * A boolean property used to represent whether the table is in * row or cell selection modes. By default a table is in row selection * mode which means that individual cells can not be selected. Setting * <code>cellSelectionEnabled</code> to be true results in cells being * able to be selected (but not rows). */ private BooleanProperty cellSelectionEnabled = new SimpleBooleanProperty(this, "cellSelectionEnabled"); public final BooleanProperty cellSelectionEnabledProperty() { return cellSelectionEnabled; } public final void setCellSelectionEnabled(boolean value) { cellSelectionEnabledProperty().set(value); } public final boolean isCellSelectionEnabled() { return cellSelectionEnabled == null ? false : cellSelectionEnabled.get(); } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de