GWT 活动和编辑器框架

发布于 2024-11-01 17:06:07 字数 1004 浏览 4 评论 0 原文

我一直在使用 GWT MVP 框架 + GWT 从事一些小项目 编辑器框架。我有视图接口,其字段声明如下:

 @Path("field")
 IsEditor<ValueBoxEditor<Long>> getField();

视图实现如下所示:

@UiField
   IsEditor<ValueBoxEditor<Long>> field;
public IsEditor<ValueBoxEditor<Long>> getField(){
   return field;
}

在我的活动中,我有对应视图的引用,当我有 做(在 Activity 中)类似这样的事情:

view.getField.setEnable(true);

我必须强制转换为

((ValueBoxBase<Long>)view.getField()).setEnable(true);

After 之后我无法测试这个单元,因为在我的测试中我定义了 View 的行为以返回 Mock (IsEditor>; ) on view.getFiled() 结果我得到:

java.lang.ClassCastException: com.google.gwt.editor.client.IsEditor$
$EnhancerByMockitoWithCGLIB$$e8c00c36 cannot be cast to
com.google.gwt.user.client.ui.ValueBoxBase

What is bestpractiece to call Views Componentsmethods from Activity 不做铸造?

I´ve been working on some small projects using GWT MVP framework + GWT
Editors framework. I have Views interfaces with fields declared like:

 @Path("field")
 IsEditor<ValueBoxEditor<Long>> getField();

Views implementations look like this:

@UiField
   IsEditor<ValueBoxEditor<Long>> field;
public IsEditor<ValueBoxEditor<Long>> getField(){
   return field;
}

In my Activitys I have referances to correspond Views and when I have
to do(in Activity) something like this:

view.getField.setEnable(true);

I have to do cast to

((ValueBoxBase<Long>)view.getField()).setEnable(true);

After that I can't test this unit, because in my test I define behaviour of View to return Mock (IsEditor<ValueBoxEditor<Long>>) on view.getFiled() as result I get:

java.lang.ClassCastException: com.google.gwt.editor.client.IsEditor$
$EnhancerByMockitoWithCGLIB$e8c00c36 cannot be cast to
com.google.gwt.user.client.ui.ValueBoxBase

What is best practiece to call Views components methods from Activity
without doing casting?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兔小萌 2024-11-08 17:06:08

转换为 HasEnabled 而不是 ValueBoxBase。

Cast to HasEnabled instead of ValueBoxBase.

吻泪 2024-11-08 17:06:08

您需要使用 ValueBoxEditor 适配器方法“of”:

@UiField ValueBoxBase<Long> field;

public ValueBoxEditor<Long> getField(){
   return ValueBoxEditor.of(field);
}

You need to use the ValueBoxEditor adapter method "of":

@UiField ValueBoxBase<Long> field;

public ValueBoxEditor<Long> getField(){
   return ValueBoxEditor.of(field);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文