DateCell(DateTimeFormat)构造函数未记录

时间:2012-10-24 11:29:37

标签: gwt

我尝试使用DateCell(格式)将日期列添加到单元格表报告中。

    DateTimeFormat format = DateTimeFormat
        .getFormat(PredefinedFormat.DATE_MEDIUM);

DateCell classDateCell = new DateCell(format);

我收到错误消息:"构造函数DateCell(DateTimeFormat)未定义",但javadoc http://google-web-toolkit.googlecode.com/svn/javadoc/latest/index.html?overview-summary.html表示这是一个有效的构造函数。

这里的问题是什么?

2 个答案:

答案 0 :(得分:0)

如果您使用此:

com.google.gwt.cell.client.DateCell

com.google.gwt.i18n.client.DateTimeFormat

然后你应该没事。

答案 1 :(得分:0)

您是否有机会使用com.google.gwt.i18n.shared.DateTimeFormat的超级类com.google.gwt.i18n.client.DateTimeFormat?后者是你感兴趣的构造函数正在寻找的。