- java.lang.Object
-
- java.awt.event.MouseAdapter
-
- javax.swing.text.html.HTMLEditorKit.LinkController
-
- 实现的所有接口
-
MouseListener
,MouseMotionListener
,MouseWheelListener
,Serializable
,EventListener
- Enclosing class:
- HTMLEditorKit
public static class HTMLEditorKit.LinkController extends MouseAdapter implements MouseMotionListener, Serializable
在适当的时候观察关联组件并在其上触发超链接事件的类。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 LinkController()
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 protected void
activateLink(int pos, JEditorPane editor)
如果给定位置表示链接,则在关联的JEditorPane上调用linkActivated。void
mouseClicked(MouseEvent e)
被称为鼠标点击事件。-
声明方法的类 java.awt.event.MouseAdapter
mouseDragged, mouseMoved, mouseWheelMoved
-
声明方法的类 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
声明方法的接口 java.awt.event.MouseListener
mouseEntered, mouseExited, mousePressed, mouseReleased
-
声明方法的接口 java.awt.event.MouseMotionListener
mouseDragged, mouseMoved
-
-
-
-
方法详细信息
-
mouseClicked
public void mouseClicked(MouseEvent e)
被称为鼠标点击事件。 如果组件是只读的(即浏览器),则单击的事件用于驱动尝试遵循链接指定的引用。- Specified by:
-
mouseClicked
在界面MouseListener
- 参数
-
e
- 鼠标事件 - 另请参见:
-
MouseListener.mouseClicked(java.awt.event.MouseEvent)
-
activateLink
protected void activateLink(int pos, JEditorPane editor)
如果给定位置表示链接,则在关联的JEditorPane上调用linkActivated。这被实现为转发到具有相同名称的方法,但是具有以下args == -1。
- 参数
-
pos
- 职位 -
editor
- the editor pane
-
-