eclipse rcp:为什么 ViewerCell 和 ViewerRow 没有获取行索引的方法?

发布于 2024-11-18 00:24:06 字数 104 浏览 2 评论 0原文

ViewerCell类有一个方法getColumnIndex,为什么不提供一个返回行索引的方法呢? 这真的让我很困惑。请给我一些解释。

ViewerCell class has a method getColumnIndex, why not provide a method to return row index?
This really confuses me. Please give me some explanation about this.

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

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

发布评论

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

评论(2

吃不饱 2024-11-25 00:24:06

您可以使用table.getItems().indexOf(cell.getElement()) (+/-)。

其原因是在虚拟表中找到的。对于这些,您无法轻松找到行索引......

You can use table.getItems().indexOf(cell.getElement()) (+/-).

The reason for this is found in virtual tables. For these you cannot easily find the row index...

梦在夏天 2024-11-25 00:24:06

我的解决方案在这里(扩展TableViewer并将此方法添加到您的父类中):

public int getRowIndex(ViewerCell cell) {
    YourRowType row = (YourRowType) cell.getElement();
    int result = 0;
    for (int i = 0; i < this.doGetItemCount(); i++) {
        if (this.getElementAt(i).equals(row)) {
            result = i;
            break;
        }
    }
    return result;
}

My solution is here (extend TableViewer and add this method to your parent class):

public int getRowIndex(ViewerCell cell) {
    YourRowType row = (YourRowType) cell.getElement();
    int result = 0;
    for (int i = 0; i < this.doGetItemCount(); i++) {
        if (this.getElementAt(i).equals(row)) {
            result = i;
            break;
        }
    }
    return result;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文