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

« back to all changes in this revision

Viewing changes to org/w3c/dom/html/HTMLFontElement.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
 * Local change to font. See the FONT element definition in HTML 4.0. This 
 
14
 * element is deprecated in HTML 4.0.
 
15
 */
 
16
public interface HTMLFontElement extends HTMLElement {
 
17
  /**
 
18
   * Font color. See the color attribute definition in HTML 4.0. This 
 
19
   * attribute is deprecated in HTML 4.0.
 
20
   */
 
21
  public String             getColor();
 
22
  public void               setColor(String color);
 
23
  /**
 
24
   * Font face identifier. See the face attribute definition in HTML 4.0. This 
 
25
   * attribute is deprecated in HTML 4.0.
 
26
   */
 
27
  public String             getFace();
 
28
  public void               setFace(String face);
 
29
  /**
 
30
   * Font size. See the size attribute definition in HTML 4.0. This attribute 
 
31
   * is deprecated in HTML 4.0.
 
32
   */
 
33
  public String             getSize();
 
34
  public void               setSize(String size);
 
35
}
 
36