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

« back to all changes in this revision

Viewing changes to org/w3c/dom/html/HTMLTableCellElement.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
 * The object used to represent the <code>TH</code> and <code>TD</code>
 
14
 * elements. See the TD element definition in HTML 4.0.
 
15
 */
 
16
public interface HTMLTableCellElement extends HTMLElement {
 
17
  /**
 
18
   * The index of this cell in the row. 
 
19
   */
 
20
  public int                getCellIndex();
 
21
  public void               setCellIndex(int cellIndex);
 
22
  /**
 
23
   * Abbreviation for header cells. See the abbr attribute definition in HTML 
 
24
   * 4.0.
 
25
   */
 
26
  public String             getAbbr();
 
27
  public void               setAbbr(String abbr);
 
28
  /**
 
29
   * Horizontal alignment of data in cell. See the align attribute definition 
 
30
   * in HTML 4.0.
 
31
   */
 
32
  public String             getAlign();
 
33
  public void               setAlign(String align);
 
34
  /**
 
35
   * Names group of related headers. See the axis attribute definition in HTML 
 
36
   * 4.0.
 
37
   */
 
38
  public String             getAxis();
 
39
  public void               setAxis(String axis);
 
40
  /**
 
41
   * Cell background color. See the bgcolor attribute definition in HTML 4.0. 
 
42
   * This attribute is deprecated in HTML 4.0.
 
43
   */
 
44
  public String             getBgColor();
 
45
  public void               setBgColor(String bgColor);
 
46
  /**
 
47
   * Alignment character for cells in a column. See the char attribute 
 
48
   * definition in HTML 4.0.
 
49
   */
 
50
  public String             getCh();
 
51
  public void               setCh(String ch);
 
52
  /**
 
53
   * Offset of alignment character. See the charoff attribute definition in 
 
54
   * HTML 4.0.
 
55
   */
 
56
  public String             getChOff();
 
57
  public void               setChOff(String chOff);
 
58
  /**
 
59
   * Number of columns spanned by cell. See the colspan attribute definition 
 
60
   * in HTML 4.0.
 
61
   */
 
62
  public int                getColSpan();
 
63
  public void               setColSpan(int colSpan);
 
64
  /**
 
65
   * List of <code>id</code> attribute values for header cells. See the 
 
66
   * headers attribute definition in HTML 4.0.
 
67
   */
 
68
  public String             getHeaders();
 
69
  public void               setHeaders(String headers);
 
70
  /**
 
71
   * Cell height. See the height attribute definition in HTML 4.0. This 
 
72
   * attribute is deprecated in HTML 4.0.
 
73
   */
 
74
  public String             getHeight();
 
75
  public void               setHeight(String height);
 
76
  /**
 
77
   * Suppress word wrapping. See the nowrap attribute definition in HTML 4.0. 
 
78
   * This attribute is deprecated in HTML 4.0.
 
79
   */
 
80
  public boolean            getNoWrap();
 
81
  public void               setNoWrap(boolean noWrap);
 
82
  /**
 
83
   * Number of rows spanned by cell. See the rowspan attribute definition in 
 
84
   * HTML 4.0.
 
85
   */
 
86
  public int                getRowSpan();
 
87
  public void               setRowSpan(int rowSpan);
 
88
  /**
 
89
   * Scope covered by header cells. See the scope attribute definition in HTML 
 
90
   * 4.0.
 
91
   */
 
92
  public String             getScope();
 
93
  public void               setScope(String scope);
 
94
  /**
 
95
   * Vertical alignment of data in cell. See the valign attribute definition 
 
96
   * in HTML 4.0.
 
97
   */
 
98
  public String             getVAlign();
 
99
  public void               setVAlign(String vAlign);
 
100
  /**
 
101
   * Cell width. See the width attribute definition in HTML 4.0. This 
 
102
   * attribute is deprecated in HTML 4.0.
 
103
   */
 
104
  public String             getWidth();
 
105
  public void               setWidth(String width);
 
106
}
 
107