我正在尝试使用 DateCell(format) 将日期列添加到单元格表报告中。
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,表示这是一个有效的构造函数。
这里有什么问题?