GWT - 扩展 Composite 而不是 Widget
我开始使用 GWT 并构建我自己的 Button。我读到了有关最佳实践的内容,并且我应该扩展 Composite 而不是 Widget。但为什么?在 Stackoverflow 上,我读到 GWT Widget 对于某些浏览器有特殊的行为,但是当我扩展 Widget 时,该行为不会丢失,是吗?重点是,我想要一个 Button,只是具有另一种样式。而且因为我不止一次需要它,所以我不想一直重复代码。但如果我扩展 Composite,我必须提供与 Button 相同的方法来传递 setClickHandler(...) 等内容。这看起来开销很大。
Im starting to work with GWT and build my own Button. I read about best practices and that I should extend Composite instead of Widget. But why? Here on Stackoverflow i read that the GWT Widgets have special behaviour for some browsers, but when I extend a Widget that behaviour isn't lost, is it? The point is, I want a Button, just with another style. And because I need it more than once, I dont want to repeat the code all the time. But if I extend Composite I must offer the same methods like Button to hand off things like setClickHandler(...). This looks like alot of overhead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Composite 来创建复杂的小部件。 Composite 类允许您在您的小部件内使用其他现有的小部件。
对于您的情况,只需子类 Button 小部件,因为您不想增加按钮的复杂性。
Use Composite of you want to create complex widget. The Composite class allows you to use others existing widget inside your widget.
For your case, just subclass Button widget because you don't want add complexity to your button.
没有必要扩展 Composite 或 Button(更糟糕),
您可以创建不扩展其他类(按钮..)的类,如下所示:
Extending Composite or Button (worse) is not necessary,
You can create class that extends no other class ( Button..) as follow: