- java.lang.Object
-
- javax.swing.TransferHandler.DropLocation
-
- javax.swing.JTable.DropLocation
-
- Enclosing class:
- JTable
public static final class JTable.DropLocation extends TransferHandler.DropLocation
的一个子类TransferHandler.DropLocation
表示用于一个放置位置JTable
。- 从以下版本开始:
- 1.6
- 另请参见:
-
JTable.getDropLocation()
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
getColumn()
返回抛出的项目应放在表中的列索引。int
getRow()
返回放置在表中的行索引。boolean
isInsertColumn()
返回此位置是否表示列的插入。boolean
isInsertRow()
返回此位置是否表示行的插入。String
toString()
返回此放置位置的字符串表示形式。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javax.swing.TransferHandler.DropLocation
getDropPoint
-
-
-
-
方法详细信息
-
getRow
public int getRow()
返回放置在表中的行索引。 价值的解释取决于isInsertRow()
的回报。 如果该方法返回true
此值表示应插入新行的索引。 否则,它表示删除数据的现有行的值。 这个索引就是视图。-1
表示下降发生在空白空间,无法计算行。- 结果
- 下拉列
-
getColumn
public int getColumn()
返回抛出的项目应放在表中的列索引。 价值的解释取决于回报isInsertColumn()
。 如果该方法返回true
此值表示应插入新列的索引。 否则,它表示删除数据的现有列的值。 这个索引就是视图。-1
表示下降发生在空白空间,不能计算任何列。- 结果
- 下拉列
-
isInsertRow
public boolean isInsertRow()
返回此位置是否表示行的插入。- 结果
- 这是否是插入行
-
isInsertColumn
public boolean isInsertColumn()
返回此位置是否表示列的插入。- 结果
- 这是否是插入列
-
toString
public String toString()
返回此放置位置的字符串表示形式。 该方法旨在用于调试目的,并且返回的字符串的内容和格式可能因实现而异。- 重写:
-
toString
在TransferHandler.DropLocation
- 结果
- 此放置位置的字符串表示形式
-
-