01: /*
02: * Copyright (c) 2000 World Wide Web Consortium,
03: * (Massachusetts Institute of Technology, Institut National de
04: * Recherche en Informatique et en Automatique, Keio University). All
05: * Rights Reserved. This program is distributed under the W3C's Software
06: * Intellectual Property License. This program is distributed in the
07: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09: * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
10: * details.
11: */
12:
13: package org.w3c.dom.html;
14:
15: /**
16: * Regroups the <code>COL</code> and <code>COLGROUP</code> elements. See the
17: * COL element definition in HTML 4.0.
18: * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
19: */
20: public interface HTMLTableColElement extends HTMLElement {
21: /**
22: * Horizontal alignment of cell data in column. See the align attribute
23: * definition in HTML 4.0.
24: */
25: public String getAlign();
26:
27: public void setAlign(String align);
28:
29: /**
30: * Alignment character for cells in a column. See the char attribute
31: * definition in HTML 4.0.
32: */
33: public String getCh();
34:
35: public void setCh(String ch);
36:
37: /**
38: * Offset of alignment character. See the charoff attribute definition
39: * in HTML 4.0.
40: */
41: public String getChOff();
42:
43: public void setChOff(String chOff);
44:
45: /**
46: * Indicates the number of columns in a group or affected by a grouping.
47: * See the span attribute definition in HTML 4.0.
48: */
49: public int getSpan();
50:
51: public void setSpan(int span);
52:
53: /**
54: * Vertical alignment of cell data in column. See the valign attribute
55: * definition in HTML 4.0.
56: */
57: public String getVAlign();
58:
59: public void setVAlign(String vAlign);
60:
61: /**
62: * Default column width. See the width attribute definition in HTML 4.0.
63: */
64: public String getWidth();
65:
66: public void setWidth(String width);
67:
68: }
|