org.apache.ecs
Interface MouseEvents
- All Known Implementing Classes:
- a, A, abbr, Abbr, acronym, Acronym, address, Address, area, Area, b, B, big, Big, blockquote, BlockQuote, body, Body, button, Button, caption, Caption, center, Center, cite, Cite, code, Code, dd, DD, del, Del, dfn, Dfn, div, Div, dl, DL, dt, DT, em, Em, fieldset, FieldSet, form, Form, h1, H1, h2, H2, h3, H3, h4, H4, h5, H5, h6, H6, hr, HR, i, I, img, IMG, input, Input, ins, Ins, kbd, Kbd, label, Label, legend, Legend, li, LI, link, Link, map, Map, noframes, NoFrames, noscript, NoScript, object, ObjectElement, ol, OL, optgroup, OptGroup, option, Option, p, P, pre, PRE, q, Q, s, S, samp, Samp, select, Select, small, Small, span, Span, strike, Strike, strong, Strong, sub, Sub, sup, Sup, table, Table, tbody, TBody, td, TD, textarea, TextArea, tfoot, TFoot, th, TH, thead, THead, tr, TR, tt, TT, u, U, ul, UL, var, Var
public interface MouseEvents
This interface is intended to be implemented by elements that require
javascript mouse event attributes.
- Version:
- $Id: MouseEvents.java,v 1.4 2003/04/27 09:42:53 rdonkin Exp $
- Author:
- Stephan Nagy, Jon S. Stevens
Method Summary |
void |
setOnClick(java.lang.String script)
make sure implementing classes have a setOnClick method. |
void |
setOnDblClick(java.lang.String script)
make sure implementing classes have a setOnDblClick method. |
void |
setOnMouseDown(java.lang.String script)
make sure implementing classes have a setOnMouseDown method. |
void |
setOnMouseMove(java.lang.String script)
make sure implementing classes have a setOnMouseMove method. |
void |
setOnMouseOut(java.lang.String script)
make sure implementing classes have a setOnMouseOut method. |
void |
setOnMouseOver(java.lang.String script)
make sure implementing classes have a setOnMouseOver method. |
void |
setOnMouseUp(java.lang.String script)
make sure implementing classes have a setOnMouseUp method. |
setOnClick
void setOnClick(java.lang.String script)
- make sure implementing classes have a setOnClick method.
The onclick event occurs when the pointing device button is clicked
over an element. This attribute may be used with most elements.
setOnDblClick
void setOnDblClick(java.lang.String script)
- make sure implementing classes have a setOnDblClick method.
The ondblclick event occurs when the pointing device button is double
clicked over an element. This attribute may be used with most elements.
setOnMouseDown
void setOnMouseDown(java.lang.String script)
- make sure implementing classes have a setOnMouseDown method.
The onmousedown event occurs when the pointing device button is pressed
over an element. This attribute may be used with most elements.
setOnMouseUp
void setOnMouseUp(java.lang.String script)
- make sure implementing classes have a setOnMouseUp method.
The onmouseup event occurs when the pointing device button is released
over an element. This attribute may be used with most elements.
setOnMouseOver
void setOnMouseOver(java.lang.String script)
- make sure implementing classes have a setOnMouseOver method.
The onmouseover event occurs when the pointing device is moved onto an
element. This attribute may be used with most elements.
setOnMouseMove
void setOnMouseMove(java.lang.String script)
- make sure implementing classes have a setOnMouseMove method.
The onmousemove event occurs when the pointing device is moved while it
is over an element. This attribute may be used with most elements.
setOnMouseOut
void setOnMouseOut(java.lang.String script)
- make sure implementing classes have a setOnMouseOut method.
The onmouseout event occurs when the pointing device is moved away from
an element. This attribute may be used with most elements.
Copyright © 1999-2003 Apache Software Foundation. All Rights Reserved.