KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > html > HTMLTableColElement


1 /*
2  * Copyright (c) 2000 World Wide Web Consortium,
3  * (Massachusetts Institute of Technology, Institut National de
4  * Recherche en Informatique et en Automatique, Keio University). All
5  * Rights Reserved. This program is distributed under the W3C's Software
6  * Intellectual Property License. This program is distributed in the
7  * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  * 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 JavaDoc getAlign();
26     public void setAlign(String JavaDoc align);
27
28     /**
29      * Alignment character for cells in a column. See the char attribute
30      * definition in HTML 4.0.
31      */

32     public String JavaDoc getCh();
33     public void setCh(String JavaDoc ch);
34
35     /**
36      * Offset of alignment character. See the charoff attribute definition
37      * in HTML 4.0.
38      */

39     public String JavaDoc getChOff();
40     public void setChOff(String JavaDoc chOff);
41
42     /**
43      * Indicates the number of columns in a group or affected by a grouping.
44      * See the span attribute definition in HTML 4.0.
45      */

46     public int getSpan();
47     public void setSpan(int span);
48
49     /**
50      * Vertical alignment of cell data in column. See the valign attribute
51      * definition in HTML 4.0.
52      */

53     public String JavaDoc getVAlign();
54     public void setVAlign(String JavaDoc vAlign);
55
56     /**
57      * Default column width. See the width attribute definition in HTML 4.0.
58      */

59     public String JavaDoc getWidth();
60     public void setWidth(String JavaDoc width);
61
62 }
63
64
Popular Tags