org.apache.myfaces.html5.component.properties
Interface MouseEventProperties

All Known Implementing Classes:
AbstractAudio, AbstractDiv, AbstractMedia, AbstractMeter, AbstractProgress, AbstractSlide, AbstractSlideView, AbstractVideo, Audio, Div, Media, Meter, Progress, Slide, SlideView, Video

public interface MouseEventProperties


Method Summary
 String getOnclick()
          HTML: Script to be invoked when the element is clicked.
 String getOndblclick()
          HTML: Script to be invoked when the element is double-clicked.
 String getOnmousedown()
          HTML: Script to be invoked when the pointing device is pressed over this element.
 String getOnmousemove()
          HTML: Script to be invoked when the pointing device is moved while it is in this element.
 String getOnmouseout()
          HTML: Script to be invoked when the pointing device is moves out of this element.
 String getOnmouseover()
          HTML: Script to be invoked when the pointing device is moved into this element.
 String getOnmouseup()
          HTML: Script to be invoked when the pointing device is released over this element.
 String getOnmousewheel()
          HTML: Script to be invoked when the pointing device is wheeled over this element.
 

Method Detail

getOnclick

@JSFProperty(clientEvent="click")
String getOnclick()
HTML: Script to be invoked when the element is clicked.


getOndblclick

@JSFProperty(clientEvent="dblclick")
String getOndblclick()
HTML: Script to be invoked when the element is double-clicked.


getOnmousedown

@JSFProperty(clientEvent="mousedown")
String getOnmousedown()
HTML: Script to be invoked when the pointing device is pressed over this element.


getOnmousemove

@JSFProperty(clientEvent="mousemove")
String getOnmousemove()
HTML: Script to be invoked when the pointing device is moved while it is in this element.


getOnmouseout

@JSFProperty(clientEvent="mouseout")
String getOnmouseout()
HTML: Script to be invoked when the pointing device is moves out of this element.


getOnmouseover

@JSFProperty(clientEvent="mouseover")
String getOnmouseover()
HTML: Script to be invoked when the pointing device is moved into this element.


getOnmouseup

@JSFProperty(clientEvent="mouseup")
String getOnmouseup()
HTML: Script to be invoked when the pointing device is released over this element.


getOnmousewheel

@JSFProperty(clientEvent="mousewheel")
String getOnmousewheel()
HTML: Script to be invoked when the pointing device is wheeled over this element.



Copyright © 2011 The Apache Software Foundation. All Rights Reserved.