Class Meta
- java.lang.Object
-
- org.pepstock.charba.client.dom.BaseEventTarget
-
- org.pepstock.charba.client.dom.BaseNode
-
- org.pepstock.charba.client.dom.BaseElement
-
- org.pepstock.charba.client.dom.BaseHtmlElement
-
- org.pepstock.charba.client.dom.elements.Meta
-
- All Implemented Interfaces:
IsJSType
@JsType(isNative=true, name="HTMLMetaElement", namespace="<global>") public final class Meta extends BaseHtmlElement
Represents an HTML <meta> element which contains descriptive metadata about a document.- Author:
- Andrea "Stock" Stocchero
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.pepstock.charba.client.dom.BaseEventTarget
BaseEventTarget.EventListenerCallback
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContent()
Returns the value of meta-data property..String
getHttpEquiv()
Returns the name of an HTTP response header to define for a document.String
getName()
Returns the name of a meta-data property to define for a document.void
setContent(String content)
Sets the value of meta-data property..void
setHttpEquiv(String httpEquiv)
Sets the name of an HTTP response header to define for a document.void
setName(String name)
Sets the name of a meta-data property to define for a document.-
Methods inherited from class org.pepstock.charba.client.dom.BaseHtmlElement
blur, focus, getAbsoluteLeft, getAbsoluteTop, getInnerText, getOffsetHeight, getOffsetLeft, getOffsetParent, getOffsetTop, getOffsetWidth, getParentHtmlElement, getScrollingElement, getStyle, getTabIndex, removeFromParent, setInnerText, setTabIndex
-
Methods inherited from class org.pepstock.charba.client.dom.BaseElement
getAttributes, getBoundingClientRect, getChildElementCount, getClientHeight, getClientLeft, getClientTop, getClientWidth, getElementsByTagName, getFirstElementChild, getId, getInnerHTML, getLastElementChild, getNextElementSibling, getOuterHTML, getPreviousElementSibling, getScrollHeight, getScrollLeft, getScrollTop, getScrollWidth, getTagName, hasAttributes, hasPointerCapture, releasePointerCapture, remove, setId, setInnerHTML, setPointerCapture
-
Methods inherited from class org.pepstock.charba.client.dom.BaseNode
appendChild, cloneNode, getChildNodes, getFirstChild, getLastChild, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentElement, getParentNode, getPreviousSibling, getTextContent, hasChildNodes, insertBefore, removeAllChildren, removeChild, setNodeValue, setTextContent
-
Methods inherited from class org.pepstock.charba.client.dom.BaseEventTarget
addEventListener, addEventListener, dispatchEvent, dispatchEvent, removeEventListener, removeEventListener
-
-
-
-
Field Detail
-
TAG
@JsOverlay public static final String TAG
The tag for this element.- See Also:
- Constant Field Values
-
-
Method Detail
-
getContent
@JsProperty public String getContent()
Returns the value of meta-data property..- Returns:
- the value of meta-data property.
-
setContent
@JsProperty public void setContent(String content)
Sets the value of meta-data property..- Parameters:
content
- the value of meta-data property.
-
getHttpEquiv
@JsProperty public String getHttpEquiv()
Returns the name of an HTTP response header to define for a document.- Returns:
- the name of an HTTP response header to define for a document.
-
setHttpEquiv
@JsProperty public void setHttpEquiv(String httpEquiv)
Sets the name of an HTTP response header to define for a document.- Parameters:
httpEquiv
- the name of an HTTP response header to define for a document.
-
getName
@JsProperty public String getName()
Returns the name of a meta-data property to define for a document.- Returns:
- the name of a meta-data property to define for a document
-
setName
@JsProperty public void setName(String name)
Sets the name of a meta-data property to define for a document.- Parameters:
name
- the name of a meta-data property to define for a document
-
-