如何访问标准的 Eclipse 图标

How to access standard eclipse icons

我正在使用 Nebula nattable 构建一棵树 table,并尝试将其设计为 swt 树 table。现在的问题是我正在尝试对装饰器使用与 swt 相同的图标 table 但找不到它们。

当前图标选择如下:

 TreeImagePainter treeImagePainter =
                new TreeImagePainter(
                        false,
                        GUIHelper.getImage("right"), //$NON-NLS-1$
                        GUIHelper.getImage("right_down"), //$NON-NLS-1$
                        GUIHelper.getImage("leaf")); // This is an empty image acting as a placeholder to match the
                                                        // indentation

我想用图中显示的图标替换它们:
A是想要的图标,B是当前图标。

有相对论的简单方法可以实现吗?

这些图标来自操作系统,据我所知,没有简单的方法可以访问它们。至少我还没有找到一种方法,这就是在 NatTable 本身中使用这些图标的原因。