- 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()
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Position.Bias
getBias()
返回下降指数的偏差。int
getIndex()
返回索引,其中删除的数据应插入关联的组件。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
-
-
-
-
方法详细信息
-
getIndex
public int getIndex()
返回索引,其中删除的数据应插入关联的组件。 该索引表示字符之间的位置,这将由插入符号解释。- 结果
- 下降指数
-
getBias
public Position.Bias getBias()
返回下降指数的偏差。- 结果
- 跌落偏差
-
toString
public String toString()
返回此放置位置的字符串表示形式。 该方法旨在用于调试目的,并且返回的字符串的内容和格式可能因实现而异。- 重写:
-
toString
在TransferHandler.DropLocation
- 结果
- 此放置位置的字符串表示形式
-
-