- java.lang.Object
-
- javax.swing.TransferHandler.DropLocation
-
- javax.swing.JList.DropLocation
-
public static final class JList.DropLocation extends TransferHandler.DropLocation
的一个子类TransferHandler.DropLocation
表示用于一个放置位置JList
。- 从以下版本开始:
- 1.6
- 另请参见:
-
JList.getDropLocation()
-
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 int
getIndex()
返回应将放置的数据放在列表中的索引。boolean
isInsert()
返回此位置是否表示插入位置。String
toString()
返回此放置位置的字符串表示形式。-
声明方法的类 javax.swing.TransferHandler.DropLocation
getDropPoint
-
-
-
-
方法详细信息
-
getIndex
public int getIndex()
返回应将放置的数据放在列表中的索引。 值的解释取决于相关组件上设置的丢弃模式。 如果丢弃模式为DropMode.USE_SELECTION
或DropMode.ON
,则返回值是列表中行的索引。 如果丢弃模式为DropMode.INSERT
,则返回值是指应插入数据的索引。 如果丢弃模式为DropMode.ON_OR_INSERT
,则值isInsert()
指示索引是行的索引还是插入索引。-1
表示在空白区域发生了丢弃,并且无法计算索引。- 结果
- 下降指数
-
isInsert
public boolean isInsert()
返回此位置是否表示插入位置。- 结果
- 这是否是插入位置
-
toString
public String toString()
返回此放置位置的字符串表示形式。 此方法旨在用于调试目的,并且返回的字符串的内容和格式可能在实现之间有所不同。- 重写:
-
toString
在类TransferHandler.DropLocation
- 结果
- 此放置位置的字符串表示形式
-
-