避免在 GWT 命令模式中使用匿名内部类

发布于 2024-10-29 23:17:29 字数 155 浏览 0 评论 0原文

我将 GWT-dispatcher 用于我的 GWT-app 以获得命令模式的好处。随着服务器调用数量的增加,匿名内部类的数量也会增加,并使代码变得混乱。是否有关于如何从其余代码(在我的例子中是 Activity)中提取这些匿名内部类及其 onSuccess 和 onFailure 的设计技巧?

I use GWT-dispatcher for my GWT-app to get the benefits of command-pattern. As the number of server calls grows the number of anonymous inner classes also grows and clutters the code. Is there a design tip on how to extract these anonymous inner classes and their onSuccess and onFailure from the rest of the code (in my case the Activity)?

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

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

发布评论

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

评论(1

将军与妓 2024-11-05 23:17:29

您可以改为声明命名内部类。如果这些类不需要访问外部类的实例,它们甚至可以是静态的,尽管这对于 GWT 编译的代码来说并不重要。

You can declare named inner classes instead. These classes can even be static if they don't need to access the instance of the outer class, though this is not important for code to be compiled by GWT.

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