Esempio n. 1
0
 /**
  * Broadcasts the event to any registered IDsfEventListner's. The listeners are broadcast to in
  * the order they were maintained.
  */
 @SuppressWarnings("unchecked")
 @Override
 public DHGroup dsfBroadcast(final DsfEvent event) // must not be null
     throws AbortDsfEventProcessingException {
   super.dsfBroadcast(event);
   return this;
 }
Esempio n. 2
0
 /**
  * The lang attribute (in no namespace) specifies the primary language for the element's contents
  * and for any of the element's attributes that contain text. Its value must be a valid BCP 47
  * language code, or the empty string.
  */
 @Override
 public DHGroup setHtmlLang(final String lang) {
   super.setHtmlLang(lang);
   return this;
 }
Esempio n. 3
0
 @Override
 public DHGroup addHtmlClassName(final CssClassConstant ccc) {
   super.addHtmlClassName(ccc);
   return this;
 }
Esempio n. 4
0
 @Override
 public DHGroup addBr(final int howMany) {
   super.addBr(howMany);
   return this;
 }
Esempio n. 5
0
 @Override
 public DHGroup add(final EventType eventType, final String jsText) {
   super.add(eventType, jsText);
   return this;
 }
Esempio n. 6
0
 //
 // Framework - Event Wiring
 //
 @Override
 public DHGroup add(final EventType eventType, final ISimpleJsEventHandler handler) {
   super.add(eventType, handler);
   return this;
 }
Esempio n. 7
0
 /** onvolumechange */
 @Override
 public DHGroup setHtmlOnVolumeChange(final String script) {
   super.setHtmlOnVolumeChange(script);
   return this;
 }
Esempio n. 8
0
 /** onsuspend */
 @Override
 public DHGroup setHtmlOnSuspend(final String script) {
   super.setHtmlOnSuspend(script);
   return this;
 }
Esempio n. 9
0
 /** The onblur event occurs when an object loses focus. not supported on BODY */
 @Override
 public DHGroup setHtmlOnBlur(final String onBlur) {
   super.setHtmlOnBlur(onBlur);
   return this;
 }
Esempio n. 10
0
 /**
  * The title attribute represents advisory information for the element, such as would be
  * appropriate for a tooltip. On a link, this could be the title or a description of the target
  * resource; on an image, it could be the image credit or a description of the image; on a
  * paragraph, it could be a footnote or commentary on the text; on a citation, it could be further
  * information about the source; and so forth. The value is text.
  *
  * <p>If this attribute is omitted from an element, then it implies that the title attribute of
  * the nearest ancestor HTML element with a title attribute set is also relevant to this element.
  */
 @Override
 public DHGroup setHtmlTitle(final String title) {
   super.setHtmlTitle(title);
   return this;
 }
Esempio n. 11
0
 /**
  * The tabindex content attribute specifies whether the element is focusable, whether it can be
  * reached using sequential focus navigation, and the relative order of the element for the
  * purposes of sequential focus navigation. The name "tab index" comes from the common use of the
  * "tab" key to navigate through the focusable elements. The term "tabbing" refers to moving
  * forward through the focusable elements that can be reached using sequential focus navigation.
  */
 @Override
 public DHGroup setHtmlTabIndex(final int tabIndex) { // HTML 5.0
   super.setHtmlTabIndex(tabIndex);
   return this;
 }
Esempio n. 12
0
 /**
  * The subject attribute may be specified on any HTML element to associate the element with an
  * element with an item attribute. If the subject attribute is specified, the attribute's value
  * must be the ID of an element with an item attribute, in the same Document as the element with
  * the subject attribute.
  */
 @Override
 public DHGroup setHtmlSubject(final String subject) {
   super.setHtmlSubject(subject);
   return this;
 }
Esempio n. 13
0
 /**
  * Set the style. This will make a copy of the contents, so further changes to the style object
  * will not be reflected.
  */
 @Override
 public DHGroup setHtmlStyle(final CSSStyleDeclaration style) {
   super.setHtmlStyle(style);
   return this;
 }
Esempio n. 14
0
 @Override
 public DHGroup setHtmlStyleAsString(final String styleString) {
   super.setHtmlStyleAsString(styleString);
   return this;
 }
Esempio n. 15
0
 /**
  * The spellcheck attribute is an enumerated attribute whose keywords are the empty string, true
  * and false. The empty string and the true keyword map to the true state. The false keyword maps
  * to the false state. In addition, there is a third state, the default state, which is the
  * missing value default (and the invalid value default).
  */
 @Override
 public DHGroup setHtmlSpellCheck(final boolean spellCheck) {
   super.setHtmlSpellCheck(spellCheck);
   return this;
 }
Esempio n. 16
0
 /** onmousewheel */
 @Override
 public DHGroup setHtmlOnMouseWheel(final String script) {
   super.setHtmlOnMouseWheel(script);
   return this;
 }
Esempio n. 17
0
 /** onprogress */
 @Override
 public DHGroup setHtmlOnProgress(final String script) {
   super.setHtmlOnProgress(script);
   return this;
 }
Esempio n. 18
0
 /**
  * The user agent estimates that if playback were to be started now, the media resource could be
  * rendered at the current playback rate all the way to its end without having to stop for further
  * buffering.
  */
 @Override
 public DHGroup setHtmlOnCanPlayThrough(final String script) {
   super.setHtmlOnCanPlayThrough(script);
   return this;
 }
Esempio n. 19
0
 /** ontimeupdate */
 @Override
 public DHGroup setHtmlOnTimeUpdate(final String script) {
   super.setHtmlOnTimeUpdate(script);
   return this;
 }
Esempio n. 20
0
 // oncontextmenu
 @Override
 public DHGroup setHtmlOnContextMenu(final String script) {
   super.setHtmlOnContextMenu(script);
   return this;
 }
Esempio n. 21
0
 /** onwaiting */
 @Override
 public DHGroup setHtmlOnWaiting(final String script) {
   super.setHtmlOnWaiting(script);
   return this;
 }
Esempio n. 22
0
 // ondragover
 @Override
 public DHGroup setHtmlOnDragOver(final String script) {
   super.setHtmlOnDragOver(script);
   return this;
 }
Esempio n. 23
0
 @Override
 public DHGroup add(final EventType eventType, final IJsFunc func) {
   super.add(eventType, func);
   return this;
 }
Esempio n. 24
0
 /** onforminput */
 @Override
 public DHGroup setHtmlOnFormInput(final String script) {
   super.setHtmlOnFormInput(script);
   return this;
 }
Esempio n. 25
0
 //
 // Helpers
 //
 @Override
 public DHGroup addBr() {
   super.addBr();
   return this;
 }
Esempio n. 26
0
 /** onkeydown */
 @Override
 public DHGroup setHtmlOnKeyDown(final String script) {
   super.setHtmlOnKeyDown(script);
   return this;
 }
Esempio n. 27
0
 /** Adds a class to the end, does not overwrite, and the classes are space delimited. */
 @Override
 public DHGroup addHtmlClassName(final String className) {
   super.addHtmlClassName(className);
   return this;
 }
Esempio n. 28
0
 /** onloadedmetadata */
 @Override
 public DHGroup setHtmlOnLoadedMetadata(final String script) {
   super.setHtmlOnLoadedMetadata(script);
   return this;
 }
Esempio n. 29
0
 @Override
 public DHGroup jif(final String jif) {
   super.jif(jif);
   return this;
 }
Esempio n. 30
0
 /** onloadstart */
 @Override
 public DHGroup setHtmlOnLoadStart(final String script) {
   super.setHtmlOnLoadStart(script);
   return this;
 }