All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.html.HTMLMetaElement
- public interface HTMLMetaElement
- extends HTMLElement
This contains generic meta-information about the document. See the META element definition in HTML 4.0.
-
getContent()
- Associated information.
-
getHttpEquiv()
- HTTP response header name.
-
getName()
- Meta information name.
-
getScheme()
- Select form of content.
-
setContent(String)
-
-
setHttpEquiv(String)
-
-
setName(String)
-
-
setScheme(String)
-
getContent
public abstract String getContent()
- Associated information. See the content attribute definition in HTML 4.0.
setContent
public abstract void setContent(String content)
getHttpEquiv
public abstract String getHttpEquiv()
- HTTP response header name. See the http-equiv attribute definition in HTML 4.0.
setHttpEquiv
public abstract void setHttpEquiv(String httpEquiv)
getName
public abstract String getName()
- Meta information name. See the name attribute definition in HTML 4.0.
setName
public abstract void setName(String name)
getScheme
public abstract String getScheme()
- Select form of content. See the scheme attribute definition in HTML 4.0.
setScheme
public abstract void setScheme(String scheme)
All Packages Class Hierarchy This Package Previous Next Index