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

« back to all changes in this revision

Viewing changes to org/w3c/dom/html/HTMLScriptElement.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
 * Script statements. See the SCRIPT element definition in HTML 4.0.
 
14
 */
 
15
public interface HTMLScriptElement extends HTMLElement {
 
16
  /**
 
17
   * The script content of the element. 
 
18
   */
 
19
  public String             getText();
 
20
  public void               setText(String text);
 
21
  /**
 
22
   * Reserved for future use. 
 
23
   */
 
24
  public String             getHtmlFor();
 
25
  public void               setHtmlFor(String htmlFor);
 
26
  /**
 
27
   * Reserved for future use. 
 
28
   */
 
29
  public String             getEvent();
 
30
  public void               setEvent(String event);
 
31
  /**
 
32
   * The character encoding of the linked resource. See the charset attribute 
 
33
   * definition in HTML 4.0.
 
34
   */
 
35
  public String             getCharset();
 
36
  public void               setCharset(String charset);
 
37
  /**
 
38
   * Indicates that the user agent can defer processing of the script.  See 
 
39
   * the defer attribute definition in HTML 4.0.
 
40
   */
 
41
  public boolean            getDefer();
 
42
  public void               setDefer(boolean defer);
 
43
  /**
 
44
   * URI designating an external script. See the src attribute definition in 
 
45
   * HTML 4.0.
 
46
   */
 
47
  public String             getSrc();
 
48
  public void               setSrc(String src);
 
49
  /**
 
50
   * The content type of the script language. See the type attribute definition
 
51
   *  in HTML 4.0.
 
52
   */
 
53
  public String             getType();
 
54
  public void               setType(String type);
 
55
}
 
56