/** * 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; }
/** * 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; }
@Override public DHGroup addHtmlClassName(final CssClassConstant ccc) { super.addHtmlClassName(ccc); return this; }
@Override public DHGroup addBr(final int howMany) { super.addBr(howMany); return this; }
@Override public DHGroup add(final EventType eventType, final String jsText) { super.add(eventType, jsText); return this; }
// // Framework - Event Wiring // @Override public DHGroup add(final EventType eventType, final ISimpleJsEventHandler handler) { super.add(eventType, handler); return this; }
/** onvolumechange */ @Override public DHGroup setHtmlOnVolumeChange(final String script) { super.setHtmlOnVolumeChange(script); return this; }
/** onsuspend */ @Override public DHGroup setHtmlOnSuspend(final String script) { super.setHtmlOnSuspend(script); return this; }
/** 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; }
/** * 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; }
/** * 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; }
/** * 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; }
/** * 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; }
@Override public DHGroup setHtmlStyleAsString(final String styleString) { super.setHtmlStyleAsString(styleString); return this; }
/** * 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; }
/** onmousewheel */ @Override public DHGroup setHtmlOnMouseWheel(final String script) { super.setHtmlOnMouseWheel(script); return this; }
/** onprogress */ @Override public DHGroup setHtmlOnProgress(final String script) { super.setHtmlOnProgress(script); return this; }
/** * 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; }
/** ontimeupdate */ @Override public DHGroup setHtmlOnTimeUpdate(final String script) { super.setHtmlOnTimeUpdate(script); return this; }
// oncontextmenu @Override public DHGroup setHtmlOnContextMenu(final String script) { super.setHtmlOnContextMenu(script); return this; }
/** onwaiting */ @Override public DHGroup setHtmlOnWaiting(final String script) { super.setHtmlOnWaiting(script); return this; }
// ondragover @Override public DHGroup setHtmlOnDragOver(final String script) { super.setHtmlOnDragOver(script); return this; }
@Override public DHGroup add(final EventType eventType, final IJsFunc func) { super.add(eventType, func); return this; }
/** onforminput */ @Override public DHGroup setHtmlOnFormInput(final String script) { super.setHtmlOnFormInput(script); return this; }
// // Helpers // @Override public DHGroup addBr() { super.addBr(); return this; }
/** onkeydown */ @Override public DHGroup setHtmlOnKeyDown(final String script) { super.setHtmlOnKeyDown(script); return this; }
/** 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; }
/** onloadedmetadata */ @Override public DHGroup setHtmlOnLoadedMetadata(final String script) { super.setHtmlOnLoadedMetadata(script); return this; }
@Override public DHGroup jif(final String jif) { super.jif(jif); return this; }
/** onloadstart */ @Override public DHGroup setHtmlOnLoadStart(final String script) { super.setHtmlOnLoadStart(script); return this; }