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.


Method Index

 o getContent()
Associated information.
 o getHttpEquiv()
HTTP response header name.
 o getName()
Meta information name.
 o getScheme()
Select form of content.
 o setContent(String)
 o setHttpEquiv(String)
 o setName(String)
 o setScheme(String)

Methods

 o getContent
 public abstract String getContent()
Associated information. See the content attribute definition in HTML 4.0.

 o setContent
 public abstract void setContent(String content)
 o getHttpEquiv
 public abstract String getHttpEquiv()
HTTP response header name. See the http-equiv attribute definition in HTML 4.0.

 o setHttpEquiv
 public abstract void setHttpEquiv(String httpEquiv)
 o getName
 public abstract String getName()
Meta information name. See the name attribute definition in HTML 4.0.

 o setName
 public abstract void setName(String name)
 o getScheme
 public abstract String getScheme()
Select form of content. See the scheme attribute definition in HTML 4.0.

 o setScheme
 public abstract void setScheme(String scheme)

All Packages  Class Hierarchy  This Package  Previous  Next  Index