GWT - 扩展 Composite 而不是 Widget

发布于 2024-10-28 18:16:35 字数 280 浏览 0 评论 0原文

我开始使用 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 技术交流群。

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

发布评论

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

评论(2

妳是的陽光 2024-11-04 18:16:35

使用 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.

沙与沫 2024-11-04 18:16:35

没有必要扩展 Composite 或 Button(更糟糕),
您可以创建不扩展其他类(按钮..)的类,如下所示:

public class MyButton {
  Button btn= new button("btn");
  VerticalPanel vpanel= new VerticalPane();/* or HorizontalPanel ..*/
   /* add whatever you need */
 public MyButton(){
   /* add style to button and or to vpanel use btn.setStyleName("style-name") */
   vpanel.add(btn)
}
public Button getButton(){ return btn; }/* it allows you get button to add ClickHandlers..*/
public Widget asWidget() { return vpanel; } /* Widget because mybe you ll need HozonalPanel */
/* you can add more features: ... */

Extending Composite or Button (worse) is not necessary,
You can create class that extends no other class ( Button..) as follow:

public class MyButton {
  Button btn= new button("btn");
  VerticalPanel vpanel= new VerticalPane();/* or HorizontalPanel ..*/
   /* add whatever you need */
 public MyButton(){
   /* add style to button and or to vpanel use btn.setStyleName("style-name") */
   vpanel.add(btn)
}
public Button getButton(){ return btn; }/* it allows you get button to add ClickHandlers..*/
public Widget asWidget() { return vpanel; } /* Widget because mybe you ll need HozonalPanel */
/* you can add more features: ... */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文