~ubuntu-branches/ubuntu/karmic/libxerces2-java/karmic

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/html/HTMLFontElement.java

  • Committer: Bazaar Package Importer
  • Author(s): Charles Majola
  • Date: 2005-12-09 11:58:21 UTC
  • Revision ID: james.westby@ubuntu.com-20051209115821-ppifmmty1jv59hik
Tags: 2.6.2-3ubuntu3
Fix Build depends

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