Uses of Class
org.pepstock.charba.client.dom.BaseHtmlElement
-
Packages that use BaseHtmlElement Package Description org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.dom Contains all classes needed to work with DOM tree, base classes of a DOM tree.org.pepstock.charba.client.dom.elements Contains a set of DOM elements that Charba is using.org.pepstock.charba.client.utils Contains some utilities to use in Charba, like HTML annotation builder, and other java script utilities useful for debugging. -
-
Uses of BaseHtmlElement in org.pepstock.charba.client.commons
Methods in org.pepstock.charba.client.commons that return BaseHtmlElement Modifier and Type Method Description protected BaseHtmlElementNativeObjectContainer. getElement(Key key)Returns a value (BaseHtmlElement) in the embedded JavaScript object at specific property.Methods in org.pepstock.charba.client.commons with parameters of type BaseHtmlElement Modifier and Type Method Description protected voidNativeObjectContainer. setElement(Key key, BaseHtmlElement value)Sets a value (BaseHtmlElement) in the embedded JavaScript object at specific property.protected voidAbstractNode. setElementAndAddToParent(Key key, BaseHtmlElement value)Sets a value (BaseHtmlElement) in the embedded JavaScript object at specific property. -
Uses of BaseHtmlElement in org.pepstock.charba.client.dom
Methods in org.pepstock.charba.client.dom with type parameters of type BaseHtmlElement Modifier and Type Method Description <T extends BaseHtmlElement>
TBaseDocument. createElement(String tagName)Creates the HTML element specified by tag name.Methods in org.pepstock.charba.client.dom that return BaseHtmlElement Modifier and Type Method Description BaseHtmlElementBaseHtmlElement. getParentHtmlElement()Returns an HTML element that is the parent of this element.
If the element has no parent, or if that parent is not an element, returnsnull.BaseHtmlElementBaseNativeEvent. getRelatedTarget()Returns the secondary target for the event, if there is one.Methods in org.pepstock.charba.client.dom that return types with arguments of type BaseHtmlElement Modifier and Type Method Description List<BaseHtmlElement>MutationRecord. getAddedElements()Returns the elements added.
Will be an empty element list if no elements were added.List<BaseHtmlElement>MutationRecord. getRemovedElements()Returns the elements removed.
Will be an empty element list if no elements were removed. -
Uses of BaseHtmlElement in org.pepstock.charba.client.dom.elements
Subclasses of BaseHtmlElement in org.pepstock.charba.client.dom.elements Modifier and Type Class Description classBodyRepresents the content of an HTML document.
There can be only one body element in a document.classCanvasRepresents a DOM element that enables drawing graphics and animations with own the canvas scripting API.classContext2dItemDOM object which provides the 2D rendering context for the drawing surface of a canvas element.
It is used for drawing shapes, text, images, and other objects.classDivProvides a <div> DOM HTML element.classHeadContains the descriptive information, or metadata, for a document.classHeadingRepresents <h3> levels of section heading.
Used internally only to highlight when canvas is not supported.classImgRepresents an HTML <img> element, providing the properties and methods used to manipulate image elements.classLineBreakProduces a line break in text (carriage-return).classMetaRepresents an HTML <meta> element which contains descriptive metadata about a document.classScriptProvides special properties and methods for manipulating the behavior and execution of <script> elementsclassSpanRepresents a generic inline container for phrasing content, which does not inherently represent anything.classStyleRepresents a <style> and doesn't allow to manipulate the CSS it contains.classTableProvides special properties and methods for manipulating the layout and presentation of tables in an HTML document.classTableCellProvides special properties and methods for manipulating the layout and presentation of table cells, either header or data cells, in an HTML document.classTableRowProvides special properties and methods for manipulating the layout and presentation of rows in an HTML table. -
Uses of BaseHtmlElement in org.pepstock.charba.client.utils
Methods in org.pepstock.charba.client.utils with parameters of type BaseHtmlElement Modifier and Type Method Description static ImgAnnotationBuilder. build(BaseHtmlElement htmlXmlContent, double width, double height)Creates an image to apply to canvas with the HTML content (passed as DOM element) and width and height of the resulted image.
-