0

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

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 主题或其他东西可以详细解释这一点。

谢谢你。

4

1 回答 1

1

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

于 2014-03-18T17:17:13.420 回答