diff --git a/ccm-cms-types-faqitem/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/FAQItem.xml b/ccm-cms-types-faqitem/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/FAQItem.xml index b21a7ed06..6ce84f5a1 100755 --- a/ccm-cms-types-faqitem/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/FAQItem.xml +++ b/ccm-cms-types-faqitem/src/WEB-INF/content-types/com/arsdigita/cms/contenttypes/FAQItem.xml @@ -1,13 +1,22 @@ - + + + + + + --> TableModel.

- * + * Displays statically or dynamically generated data in tabular form. + * The data is retrieved from a TableModel. + * + *

* This class is similar to the {@link List} class, but it has two dimensions. * The table consists of a {@link TableModelBuilder}, a {@link TableColumnModel}, * a {@link TableHeader} and a {@link TableCellRenderer} for each column. @@ -803,13 +803,13 @@ public class Table extends BlockStylable implements BebopConstants { } /** - * An internal class - * that creates a table model around a set of data given as a - * Object[][]. The table models produced by this - * builder use row numbers, converted to strings, as the key for - * each column of a row. */ + * An internal class that creates a table model around a set of data given + * as a Object[][]. The table models produced by this builder + * use row numbers, converted to strings, as the key for each column of a + * row. + */ public static class MatrixTableModelBuilder - extends AbstractTableModelBuilder { + extends AbstractTableModelBuilder { private Object[][] m_data; diff --git a/ccm-core/src/com/arsdigita/bebop/table/TableHeader.java b/ccm-core/src/com/arsdigita/bebop/table/TableHeader.java index 1aef68e30..a21efb9b0 100755 --- a/ccm-core/src/com/arsdigita/bebop/table/TableHeader.java +++ b/ccm-core/src/com/arsdigita/bebop/table/TableHeader.java @@ -34,10 +34,11 @@ import com.arsdigita.util.Assert; import com.arsdigita.xml.Element; /** - * This class is used by {@link Table} in order to maintain its - * headers. TableHeader is responsible for setting - * the control event in order to notify the {@link Table} when one - * of the column headers is clicked. + * This class is used by {@link Table} in order to maintain its headers. + * + * TableHeader is responsible for setting the control event + * in order to notify the {@link Table} when one of the column headers + * is clicked. * * @author David Lutterkort * @version $Id: TableHeader.java 1638 2007-09-17 11:48:34Z chrisg23 $