001/*
002 * Copyright (c) 2003 World Wide Web Consortium,
003 * (Massachusetts Institute of Technology, Institut National de
004 * Recherche en Informatique et en Automatique, Keio University). All
005 * Rights Reserved. This program is distributed under the W3C's Software
006 * Intellectual Property License. This program is distributed in the
007 * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
008 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
009 * PURPOSE.
010 * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
011 */
012
013package org.w3c.dom.html2;
014
015/**
016 * This contains generic meta-information about the document. See the META
017 * element definition in HTML 4.01.
018 * <p>See also the <a href='http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109'>Document Object Model (DOM) Level 2 HTML Specification</a>.
019 */
020public interface HTMLMetaElement extends HTMLElement {
021    /**
022     * Associated information. See the content attribute definition in HTML
023     * 4.01.
024     */
025    public String getContent();
026    /**
027     * Associated information. See the content attribute definition in HTML
028     * 4.01.
029     */
030    public void setContent(String content);
031
032    /**
033     * HTTP response header name [<a href='http://www.ietf.org/rfc/rfc2616.txt'>IETF RFC 2616</a>]. See the http-equiv attribute definition in
034     * HTML 4.01.
035     */
036    public String getHttpEquiv();
037    /**
038     * HTTP response header name [<a href='http://www.ietf.org/rfc/rfc2616.txt'>IETF RFC 2616</a>]. See the http-equiv attribute definition in
039     * HTML 4.01.
040     */
041    public void setHttpEquiv(String httpEquiv);
042
043    /**
044     * Meta information name. See the name attribute definition in HTML 4.01.
045     */
046    public String getName();
047    /**
048     * Meta information name. See the name attribute definition in HTML 4.01.
049     */
050    public void setName(String name);
051
052    /**
053     * Select form of content. See the scheme attribute definition in HTML
054     * 4.01.
055     */
056    public String getScheme();
057    /**
058     * Select form of content. See the scheme attribute definition in HTML
059     * 4.01.
060     */
061    public void setScheme(String scheme);
062
063}