GWT Javadoc mini教程中的代码如下所示:

TextCell textCell = new TextCell();
CellList<String> cellList = new CellList<String>(textCell);


我之所以这样问是因为我看不到TextCell及其与CellList构造函数要求之间的任何关系,因此,我看不到textCell如何满足CelList的要求。

CellList构造函数是:

CellList(Cell<T> cell)
Construct a new CellList.
CellList(Cell<T> cell, CellList.Resources resources)
Construct a new CellList with the specified CellList.Resources.
CellList(Cell<T> cell, CellList.Resources resources, ProvidesKey<T> keyProvider)
Construct a new CellList with the specified CellList.Resources and key provider.
CellList(Cell<T> cell, ProvidesKey<T> keyProvider)
Construct a new CellList with the specified key provider.


我的问题旨在基本了解它的工作原理,以及你们是否可以告诉我哪个Java或OOP主题或某些东西可以详细解释这一问题。

谢谢。

最佳答案

TextCell仅实现Cell<String>http://www.gwtproject.org/javadoc/latest/com/google/gwt/cell/client/TextCell.html

10-06 06:45