GWT 2.3.0

Uses of Class
com.google.gwt.user.cellview.client.Column

Packages that use Column
com.google.gwt.user.cellview.client The "cellview" widget set. 
 

Uses of Column in com.google.gwt.user.cellview.client
 

Subclasses of Column in com.google.gwt.user.cellview.client
 class IdentityColumn<T>
          A passthrough column, useful for giving cells access to the entire row object.
 class TextColumn<T>
          A column that displays its contents with a TextCell and does not make use of view data.
 

Methods in com.google.gwt.user.cellview.client that return Column
 Column<?,?> ColumnSortList.ColumnSortInfo.getColumn()
          Get the Column that was sorted.
 Column<?,?> ColumnSortEvent.getColumn()
          Get the Column that was sorted.
 Column<T,?> CellTable.getColumn(int col)
          Get the column at the specified index.
 

Methods in com.google.gwt.user.cellview.client with parameters of type Column
 void CellTable.addColumn(Column<T,?> col)
          Adds a column to the end of the table.
 void CellTable.addColumn(Column<T,?> col, Header<?> header)
          Adds a column to the end of the table with an associated header.
 void CellTable.addColumn(Column<T,?> col, Header<?> header, Header<?> footer)
          Adds a column to the end of the table with an associated header and footer.
 void CellTable.addColumn(Column<T,?> col, SafeHtml headerHtml)
          Adds a column to the end of the table with an associated SafeHtml header.
 void CellTable.addColumn(Column<T,?> col, SafeHtml headerHtml, SafeHtml footerHtml)
          Adds a column to the end of the table with an associated SafeHtml header and footer.
 void CellTable.addColumn(Column<T,?> col, java.lang.String headerString)
          Adds a column to the end of the table with an associated String header.
 void CellTable.addColumn(Column<T,?> col, java.lang.String headerString, java.lang.String footerString)
          Adds a column to the end of the table with an associated String header and footer.
 void CellTable.clearColumnWidth(Column<T,?> column)
          Clear the width of the specified Column.
 int CellTable.getColumnIndex(Column<T,?> column)
          Get the index of the specified column.
 void CellTable.insertColumn(int beforeIndex, Column<T,?> col)
          Inserts a column into the table at the specified index.
 void CellTable.insertColumn(int beforeIndex, Column<T,?> col, Header<?> header)
          Inserts a column into the table at the specified index with an associated header.
 void CellTable.insertColumn(int beforeIndex, Column<T,?> col, Header<?> header, Header<?> footer)
          Inserts a column into the table at the specified index with an associated header and footer.
 void CellTable.insertColumn(int beforeIndex, Column<T,?> col, SafeHtml headerHtml)
          Inserts a column into the table at the specified index with an associated SafeHtml header.
 void CellTable.insertColumn(int beforeIndex, Column<T,?> col, SafeHtml headerHtml, SafeHtml footerHtml)
          Inserts a column into the table at the specified index with an associated SafeHtml header and footer.
 void CellTable.insertColumn(int beforeIndex, Column<T,?> col, java.lang.String headerString)
          Inserts a column into the table at the specified index with an associated String header.
 void CellTable.insertColumn(int beforeIndex, Column<T,?> col, java.lang.String headerString, java.lang.String footerString)
          Inserts a column into the table at the specified index with an associated String header and footer.
 ColumnSortList.ColumnSortInfo ColumnSortList.push(Column<?,?> column)
          Push a Column onto the list at index zero, setting ascending to true.
 void CellTable.removeColumn(Column<T,?> col)
          Remove a column.
 void CellTable.setColumnWidth(Column<T,?> column, double width, Style.Unit unit)
          Set the width of a Column.
 void CellTable.setColumnWidth(Column<T,?> column, java.lang.String width)
          Set the width of a Column.
 void ColumnSortEvent.ListHandler.setComparator(Column<T,?> column, java.util.Comparator<T> comparator)
          Set the comparator used to sort the specified column in ascending order.
 

Constructors in com.google.gwt.user.cellview.client with parameters of type Column
ColumnSortList.ColumnSortInfo(Column<?,?> column, boolean ascending)
          Construct a new ColumnSortList.ColumnSortInfo.
 


GWT 2.3.0