Noor
Noor

Reputation: 20150

GWT Cell Table Error

when I am doing this CellTable table = new CellTable(); I am getting this error

The type CellTable is not generic; it cannot be parameterized with arguments

Upvotes: 1

Views: 425

Answers (2)

user467871
user467871

Reputation:

It should be like that : CellTable < T >

Upvotes: 1

barti_ddu
barti_ddu

Reputation: 10299

You should specify row datatype in constructor, see the documentation; usage example is also provided there.

Upvotes: 0

Related Questions