- java.lang.Object
-
- javax.swing.TransferHandler.DropLocation
-
- javax.swing.text.JTextComponent.DropLocation
-
- Enclosing class:
- JTextComponent
public static final class JTextComponent.DropLocation extends TransferHandler.DropLocation
表示JTextComponent
的放置位置。- 从以下版本开始:
- 1.6
- 另请参见:
-
JTextComponent.getDropLocation()
-
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 Position.Bias
getBias()
返回drop index的偏差。int
getIndex()
返回应将已删除数据插入关联组件的索引。String
toString()
返回此放置位置的字符串表示形式。-
声明方法的类 javax.swing.TransferHandler.DropLocation
getDropPoint
-
-
-
-
方法详细信息
-
getIndex
public int getIndex()
返回应将已删除数据插入关联组件的索引。 该索引表示字符之间的位置,如插入符号所解释的那样。- 结果
- 下降指数
-
getBias
public Position.Bias getBias()
返回drop index的偏差。- 结果
- 下降偏差
-
toString
public String toString()
返回此放置位置的字符串表示形式。 此方法旨在用于调试目的,并且返回的字符串的内容和格式可能在实现之间有所不同。- 重写:
-
toString
在TransferHandler.DropLocation
类 - 结果
- 此放置位置的字符串表示形式
-
-