ContentWidget.CwConstants位于何处?它是什么?

时间:2010-02-23 13:16:39

标签: gwt widget

我刚开始学习GWT,我正在尝试实施http://gwt.google.com/samples/Showcase/Showcase.html#!CwFileUpload,但却失败了。

ContentWidget.CwConstants假设来自哪里,究竟是什么?

public static interface CwConstants extends Constants,
      ContentWidget.CwConstants {
    String cwFileUploadButton();

    String cwFileUploadDescription();

    String cwFileUploadName();

String cwFileUploadNoFileError();

String cwFileUploadSelectFile();

    String cwFileUploadSuccessful();
  }

1 个答案:

答案 0 :(得分:1)

查看GWT代码项目中示例的源代码树。在那里,您还可以找到您要找的课程:http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/showcase/src/com/google/gwt/sample/showcase/client/ContentWidget.java

相关问题