Package io.wcm.handler.commons.dom
Class Script
- java.lang.Object
-
- org.jdom2.Content
-
- org.jdom2.Element
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,org.jdom2.NamespaceAware,org.jdom2.Parent
@ProviderType public final class Script extends AbstractNonSelfClosingHtmlElement
Html script element. This script block is initialized by default for "text/javascript" type.Script blocks are generated in a special XHTML conformant way, to work around some browser XHTML JavaScript problems:
<script type="text/javascript"> //<![CDATA[ script... //]]> </script>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringTYPE_JAVASCRIPTType "text/javascript".
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ScriptaddCssClass(java.lang.String value)Html "class" attribute.java.lang.StringgetSrc()Html "src" attribute.java.lang.StringgetType()Html "type" attribute.ScriptsetAttributeValueAsLong(java.lang.String name, long value)Sets attribute value as long.ScriptsetCssClass(java.lang.String value)Sets Html "class" attribute - unless you're really sure that you want to replace existing classes, you probably should callHtmlElement.addCssClass(String)instead.ScriptsetData(java.lang.String attributeName, java.lang.String value)Custom Html5 "data-*" attribute.protected ScriptsetEmptyAttributeValueAsBoolean(java.lang.String attributeName, boolean value)Sets "empty" attribute value as boolean (i.e. for "checked" attribute).ScriptsetId(java.lang.String value)Html "id" attribute.ScriptsetSrc(java.lang.String value)Html "src" attribute.ScriptsetStyle(java.lang.String styleAttribute, java.lang.String styleValue)Html "style" attribute.ScriptsetStyleString(java.lang.String value)Html "style" attribute.org.jdom2.ElementsetText(java.lang.String script)Sets the content of the element to be the text given.ScriptsetTitle(java.lang.String value)Html "title" attribute.ScriptsetType(java.lang.String value)Html "type" attribute.-
Methods inherited from class io.wcm.handler.commons.dom.HtmlElement
add, getCssClass, getData, getEmptyAttributeValueAsBoolean, getId, getStyle, getStyles, getStyleString, getTitle
-
Methods inherited from class io.wcm.handler.commons.dom.AbstractHtmlElementFactory
create, createAnchor, createAnchor, createAnchor, createAudio, createComment, createDiv, createFigCaption, createFigure, createImage, createImage, createImage, createImage, createImage, createNoScript, createScript, createScript, createSource, createSpan, createSpan, createVideo
-
Methods inherited from class io.wcm.handler.commons.dom.AbstractElement
add, addContent, addContent, addContent, addContent, addContent, getAttributeValueAsInteger, getAttributeValueAsLong, setAttribute, setAttribute, setAttributeValueAsInteger, toString, toStringContentOnly
-
Methods inherited from class org.jdom2.Element
addNamespaceDeclaration, canContainContent, clone, cloneContent, coalesceText, detach, getAdditionalNamespaces, getAttribute, getAttribute, getAttributes, getAttributesSize, getAttributeValue, getAttributeValue, getAttributeValue, getAttributeValue, getChild, getChild, getChildren, getChildren, getChildren, getChildText, getChildText, getChildTextNormalize, getChildTextNormalize, getChildTextTrim, getChildTextTrim, getContent, getContent, getContent, getContentSize, getDescendants, getDescendants, getName, getNamespace, getNamespace, getNamespacePrefix, getNamespacesInherited, getNamespacesInScope, getNamespacesIntroduced, getNamespaceURI, getQualifiedName, getText, getTextNormalize, getTextTrim, getValue, getXMLBaseURI, hasAdditionalNamespaces, hasAttributes, indexOf, isAncestor, isRootElement, removeAttribute, removeAttribute, removeAttribute, removeChild, removeChild, removeChildren, removeChildren, removeContent, removeContent, removeContent, removeContent, removeNamespaceDeclaration, setAttribute, setAttributes, setContent, setContent, setContent, setContent, setName, setNamespace, sortAttributes, sortChildren, sortContent, sortContent
-
Methods inherited from class org.jdom2.Content
equals, getCType, getDocument, getParent, getParentElement, hashCode, setParent
-
-
-
-
Field Detail
-
TYPE_JAVASCRIPT
public static final java.lang.String TYPE_JAVASCRIPT
Type "text/javascript".- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public java.lang.String getType()
Html "type" attribute.- Returns:
- Value of attribute
-
setType
public Script setType(java.lang.String value)
Html "type" attribute.- Parameters:
value- Value of attribute- Returns:
- Self reference
-
getSrc
public java.lang.String getSrc()
Html "src" attribute.- Returns:
- Value of attribute
-
setSrc
public Script setSrc(java.lang.String value)
Html "src" attribute.- Parameters:
value- Value of attribute- Returns:
- Self reference
-
setText
public org.jdom2.Element setText(java.lang.String script)
Sets the content of the element to be the text given. All existing text content and non-text context is removed. If this element should have both textual content and nested elements, useinstead. Setting a null text value is equivalent to setting an empty string value. Overrides standard setText method to add special xHTML conformant CDATA block as workaround for browsers that does not interpret XHTML-encoded script blocks correctly.Element.setContent(java.util.Collection<? extends org.jdom2.Content>)- Overrides:
setTextin classAbstractElement- Parameters:
script- new text content for the element- Returns:
- the target element
-
setEmptyAttributeValueAsBoolean
protected Script setEmptyAttributeValueAsBoolean(java.lang.String attributeName, boolean value)
Description copied from class:HtmlElementSets "empty" attribute value as boolean (i.e. for "checked" attribute).- Overrides:
setEmptyAttributeValueAsBooleanin classHtmlElement- Parameters:
attributeName- Attribute namevalue- Attribute value as boolean- Returns:
- Self reference
-
setId
public Script setId(java.lang.String value)
Description copied from class:HtmlElementHtml "id" attribute.- Overrides:
setIdin classHtmlElement- Parameters:
value- Value of attribute- Returns:
- Self reference
-
setCssClass
public Script setCssClass(java.lang.String value)
Description copied from class:HtmlElementSets Html "class" attribute - unless you're really sure that you want to replace existing classes, you probably should callHtmlElement.addCssClass(String)instead.- Overrides:
setCssClassin classHtmlElement- Parameters:
value- Value of attribute- Returns:
- Self reference
-
addCssClass
public Script addCssClass(java.lang.String value)
Description copied from class:HtmlElementHtml "class" attribute. Adds a single, space-separated value while preserving existing ones.- Overrides:
addCssClassin classHtmlElement- Parameters:
value- Value of attribute- Returns:
- Self reference
-
setStyleString
public Script setStyleString(java.lang.String value)
Description copied from class:HtmlElementHtml "style" attribute.- Overrides:
setStyleStringin classHtmlElement- Parameters:
value- Value of attribute with style key/value pairs- Returns:
- Self reference
-
setStyle
public Script setStyle(java.lang.String styleAttribute, java.lang.String styleValue)
Description copied from class:HtmlElementHtml "style" attribute. Sets single style attribute value.- Overrides:
setStylein classHtmlElement- Parameters:
styleAttribute- Style attribute namestyleValue- Style attribute value- Returns:
- Self reference
-
setTitle
public Script setTitle(java.lang.String value)
Description copied from class:HtmlElementHtml "title" attribute.- Overrides:
setTitlein classHtmlElement- Parameters:
value- Value of attribute- Returns:
- Self reference
-
setData
public Script setData(java.lang.String attributeName, java.lang.String value)
Description copied from class:HtmlElementCustom Html5 "data-*" attribute.- Overrides:
setDatain classHtmlElement- Parameters:
attributeName- Name of HTML5 data attribute (without the 'data-' prefix).value- Value of attribute- Returns:
- Self reference
-
setAttributeValueAsLong
public Script setAttributeValueAsLong(java.lang.String name, long value)
Description copied from class:AbstractElementSets attribute value as long.- Overrides:
setAttributeValueAsLongin classAbstractElement- Parameters:
name- Attribute namevalue- Attribute value as long- Returns:
- Self reference
-
-