evrencoskun / TableView

TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
MIT License
3.14k stars 459 forks source link

Wiki Typo #333

Closed maccopacco closed 4 years ago

maccopacco commented 4 years ago

1.4. Creating an Adapter

public class MyTableViewAdapter extends AbstractTableAdapter<ColumnHeader, RowHeader, Cell> {
     /**
      * This is sample CellViewHolder class
      * This viewHolder must be extended from AbstractViewHolder class instead of RecyclerView.ViewHolder.
      */
      class MyCellViewHolder extends AbstractViewHolder {

          final LinearLayout cell_container;
          inal TextView cell_textview; //should be 'final', not 'inal'