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

All Superinterfaces:
Draggable
All Known Implementing Classes:
AbstractAudio, AbstractDiv, AbstractHtml5BaseInputText, AbstractHtmlInputColor, AbstractHtmlInputDateTime, AbstractHtmlInputEmail, AbstractHtmlInputNumberSlider, AbstractHtmlInputNumberSpinner, AbstractHtmlInputText, AbstractMedia, AbstractMeter, AbstractProgress, AbstractSlide, AbstractSlideView, AbstractVideo, Audio, Div, Html5BaseInputText, HtmlInputColor, HtmlInputDateTime, HtmlInputEmail, HtmlInputNumberSlider, HtmlInputNumberSpinner, HtmlInputText, Media, Meter, Progress, Slide, SlideView, Video

public interface Html5GlobalProperties
extends Draggable


Method Summary
 String getAnimationEnd()
          HTML : Script to run when the animation ends on Html element.
 String getDir()
          HTML: The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left).
 String getLang()
          HTML: The base language of this document.
 String getOndrag()
          HTML: Handler for event that is fired when the element is dragged.
 String getOndragend()
          HTML: Handler for event that is fired when the drag operation is ended.
 String getOndragenter()
          HTML: Handler for event that is fired when the element is dragged into a valid drop target.
 String getOndragleave()
          HTML: Handler for event that is fired when the element leaves a valid drop target.
 String getOndragover()
          HTML: Handler for event that is fired when the element is being dragged over a valid drop target.
 String getOndragstart()
          HTML: Handler for event that is fired when the drag operation starts.
 String getOndrop()
          HTML: Handler for event that is fired when the element is being dropped.
 String getOnmousewheel()
          HTML: Script to be invoked when the pointing device is wheeled over this element.
 String getStyle()
          HTML: CSS styling instructions.
 String getStyleClass()
          The CSS class for this element.
 String getTitle()
          HTML: An advisory title for this element.
 boolean isDraggable()
          HTML: Specifies whether the element is draggable.
 boolean isHidden()
          HTML: Whether the element is relevant.
 
Methods inherited from interface org.apache.myfaces.html5.component.api.Draggable
setDraggable
 

Method Detail

getDir

@JSFProperty
String getDir()
HTML: The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left).


getLang

@JSFProperty
String getLang()
HTML: The base language of this document.


getTitle

@JSFProperty
String getTitle()
HTML: An advisory title for this element. Often used by the user agent as a tooltip.


getStyle

@JSFProperty
String getStyle()
HTML: CSS styling instructions.


getStyleClass

@JSFProperty
String getStyleClass()
The CSS class for this element. Corresponds to the HTML 'class' attribute.


isHidden

@JSFProperty(defaultValue="false")
boolean isHidden()
HTML: Whether the element is relevant.


isDraggable

@JSFProperty(defaultValue="false")
boolean isDraggable()
HTML: Specifies whether the element is draggable.


getOndrag

@JSFProperty(clientEvent="drag")
String getOndrag()
HTML: Handler for event that is fired when the element is dragged.


getOndragend

@JSFProperty(clientEvent="dragend")
String getOndragend()
HTML: Handler for event that is fired when the drag operation is ended. Successfully or not, this handler will run.


getOndragenter

@JSFProperty(clientEvent="dragenter")
String getOndragenter()
HTML: Handler for event that is fired when the element is dragged into a valid drop target.


getOndragleave

@JSFProperty(clientEvent="dragleave")
String getOndragleave()
HTML: Handler for event that is fired when the element leaves a valid drop target.


getOndragover

@JSFProperty(clientEvent="dragover")
String getOndragover()
HTML: Handler for event that is fired when the element is being dragged over a valid drop target.


getOndragstart

@JSFProperty(clientEvent="dragstart")
String getOndragstart()
HTML: Handler for event that is fired when the drag operation starts.


getOndrop

@JSFProperty(clientEvent="drop")
String getOndrop()
HTML: Handler for event that is fired when the element is being dropped.


getOnmousewheel

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


getAnimationEnd

@JSFProperty(clientEvent="webkitAnimationEnd")
String getAnimationEnd()
HTML : Script to run when the animation ends on Html element.



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