~ubuntu-branches/ubuntu/gutsy/libjaxp1.3-java/gutsy

« back to all changes in this revision

Viewing changes to org/w3c/dom/html/HTMLMetaElement.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-08-03 10:30:58 UTC
  • Revision ID: james.westby@ubuntu.com-20060803103058-7jwwiqv9g8w9094d
Tags: upstream-1.3.03
ImportĀ upstreamĀ versionĀ 1.3.03

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
 
3
 * Technology, Institut National de Recherche en Informatique et en
 
4
 * Automatique, Keio University).
 
5
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
 
6
 */
 
7
 
 
8
package org.w3c.dom.html;
 
9
 
 
10
import org.w3c.dom.*;
 
11
 
 
12
/**
 
13
 * This contains generic meta-information about the document. See the META 
 
14
 * element definition in HTML 4.0.
 
15
 */
 
16
public interface HTMLMetaElement extends HTMLElement {
 
17
  /**
 
18
   * Associated information. See the content attribute definition in HTML 4.0.
 
19
   */
 
20
  public String             getContent();
 
21
  public void               setContent(String content);
 
22
  /**
 
23
   * HTTP response header name. See the http-equiv attribute definition in 
 
24
   * HTML 4.0.
 
25
   */
 
26
  public String             getHttpEquiv();
 
27
  public void               setHttpEquiv(String httpEquiv);
 
28
  /**
 
29
   * Meta information name. See the name attribute definition in HTML 4.0.
 
30
   */
 
31
  public String             getName();
 
32
  public void               setName(String name);
 
33
  /**
 
34
   * Select form of content. See the scheme attribute definition in HTML 4.0.
 
35
   */
 
36
  public String             getScheme();
 
37
  public void               setScheme(String scheme);
 
38
}
 
39