Spec-Zone .ru
спецификации, руководства, описания, API
|
S
- The type of the items contained within the TableView (i.e. the same
generic type as the S in TableView<S>).T
- The type of the items contained within the TableColumn.public class TablePosition<S,T>
extends java.lang.Object
Because the TableView can have different
selection modes
, the row and column properties in
TablePosition can be 'disabled' to represent an entire row or column. This is
done by setting the unrequired property to -1 or null.
TableView
,
TableColumn
Constructor and Description |
---|
TablePosition(TableView<S> tableView,
int row,
TableColumn<S,T> tableColumn)
Constructs a TablePosition instance to represent the given row/column
position in the given TableView instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj)
Indicates whether some other object is "equal to" this one.
|
int |
getColumn()
The column index that this TablePosition represents in the TableView.
|
int |
getRow()
The row that this TablePosition represents in the TableView.
|
TableColumn<S,T> |
getTableColumn()
The TableColumn that this TablePosition represents in the TableView.
|
TableView<S> |
getTableView()
The TableView that this TablePosition is related to.
|
int |
hashCode()
Returns a hash code for this
TablePosition object. |
java.lang.String |
toString()
Returns a string representation of this
TablePosition object. |
public TablePosition(TableView<S> tableView, int row, TableColumn<S,T> tableColumn)
tableView
- The TableView that this position is related to.row
- The row that this TablePosition is representing.tableColumn
- The TableColumn instance that this TablePosition represents.public final int getRow()
public final int getColumn()
public final TableView<S> getTableView()
public final TableColumn<S,T> getTableColumn()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
obj
- the reference object with which to compare.true
if this object is equal to the obj
argument; false
otherwise.public int hashCode()
TablePosition
object.hashCode
in class java.lang.Object
TablePosition
object.public java.lang.String toString()
TablePosition
object.toString
in class java.lang.Object
TablePosition
object.Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to