Vaadin:创建 TabSheets 的 ArrayList

发布于 2024-11-14 21:11:33 字数 484 浏览 0 评论 0原文

在 Vaadin 中,我正在创建一个 TabSheets 数组。

    ArrayList<TabSheet> Tabs = new ArrayList<TabSheet>();

我对它们执行一些操作,例如向数组列表中的每个选项卡添加额外的选项卡/选项卡。

之后,当我尝试将其作为组件添加到 mainWindow 时,出现错误。这就是我尝试的方法:

    BaseClassWindow.addComponent((Component) Tabs);

我得到这个 ClassCastError:

java.util.ArrayList cannot be cast to com.vaadin.ui.Component

How can this Problem be Solutioned?有解决方法吗?

In Vaadin, I'm creating an Array of TabSheets.

    ArrayList<TabSheet> Tabs = new ArrayList<TabSheet>();

I perform some operations on them, like adding additional tabs/tabsheets to each of the Tabsheets in the arraylist.

After that, when I try to add it to the mainWindow as a Component, I get an error. This is how I try it:

    BaseClassWindow.addComponent((Component) Tabs);

I get this ClassCastError:

java.util.ArrayList cannot be cast to com.vaadin.ui.Component

How can this problem be solved? Is there a workaround?

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

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

发布评论

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

评论(1

醉生梦死 2024-11-21 21:11:33

ArrayList 不是组件,因此您无法对其进行强制转换。然而,列表(TabSheets)的内容是,因此您可以添加它们。

例如:

for(TabSheet tabsheet : tabs){
  myWindow.addComponent(tabsheet);
}

An ArrayList is not an Component so you can't cast it. The content of the list, the TabSheets, however is, so you can add those.

For example:

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