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 * Table caption See the CAPTION element definition in HTML 4.0. 14 */ 15 public interface HTMLTableCaptionElement extends HTMLElement { 16 /** 17 * Caption alignment with respect to the table. See the align attribute 18 * definition in HTML 4.0. This attribute is deprecated in HTML 4.0. 19 */ 20 public String getAlign(); 21 public void setAlign(String align); 22 } 23