Class ObjectElement


  • @TagName("object")
    public class ObjectElement
    extends Element
    Generic embedded object. Note: In principle, all properties on the object element are read-write but in some environments some properties may be read-only once the underlying object is instantiated.
    See Also:
    W3C HTML Specification
    • Constructor Detail

      • ObjectElement

        protected ObjectElement()
    • Method Detail

      • as

        public static ObjectElement as​(Element elem)
        Assert that the given Element is compatible with this class and automatically typecast it.
      • is

        public static boolean is​(JavaScriptObject o)
        Determines whether the given JavaScriptObject can be cast to this class. A null object will cause this method to return false.
      • is

        public static boolean is​(Node node)
        Determine whether the given Node can be cast to this class. A null node will cause this method to return false.
      • is

        public static boolean is​(Element elem)
        Determine whether the given Element can be cast to this class. A null node will cause this method to return false.
      • getCode

        public final java.lang.String getCode()
        Applet class file.
      • getContentDocument

        public final Document getContentDocument()
        The document this object contains, if there is any and it is available, or null otherwise.
      • getData

        public final java.lang.String getData()
        A URI specifying the location of the object's data.
        See Also:
        W3C HTML Specification
      • getForm

        public final FormElement getForm()
        Returns the FORM element containing this control. Returns null if this control is not within the context of a form.
      • getName

        public final java.lang.String getName()
        Form control or object name when submitted with a form.
        See Also:
        W3C HTML Specification
      • getType

        public final java.lang.String getType()
        Content type for data downloaded via data attribute.
        See Also:
        W3C HTML Specification
      • setCode

        public final void setCode​(java.lang.String code)
        Applet class file.
      • setData

        public final void setData​(java.lang.String data)
        A URI specifying the location of the object's data.
        See Also:
        W3C HTML Specification
      • setHeight

        public final void setHeight​(java.lang.String height)
        Override height.
        See Also:
        W3C HTML Specification
      • setName

        public final void setName​(java.lang.String name)
        Form control or object name when submitted with a form.
        See Also:
        W3C HTML Specification
      • setType

        public final void setType​(java.lang.String type)
        Content type for data downloaded via data attribute.
        See Also:
        W3C HTML Specification
      • setUseMap

        public final void setUseMap​(boolean useMap)
        Use client-side image map.
        See Also:
        W3C HTML Specification
      • setWidth

        public final void setWidth​(java.lang.String width)
        Override width.
        See Also:
        W3C HTML Specification