如何在eclipse e4中获得特定partstack中的活动部分?

时间:2014-06-03 14:08:57

标签: java eclipse eclipse-rcp e4

我有一个创建零件的按钮。我需要获取当前在部分堆栈中可见的活动部分,并将其存储为某个值的关键字。我该如何获得活跃的部分? 我使用了以下代码,但它正在获取partstack中的所有部分。

            MPart graphpart = partService
                    .createPart("com.abc.xyz.project.partDescriptor.1");
            MPartStack stack = (MPartStack) modelService.find(
                    "com.abc.xyz.project.partstack.2", application);

            for (int i = 0; i < stack.getChildren().size(); i++) {
                if (stack.getChildren().get(i).isVisible()) {
                    System.out.println("values"
                            + ((MPart) stack.getChildren().get(i)).getLabel());
                    application.getTransientData().put(
                            ((MPart) stack.getChildren().get(i)).getLabel(),
                            selectedFiles);
                }
            }

4 个答案:

答案 0 :(得分:3)

MPart您可以直接获取其容器:

final MElementContainer<MUIElement> container = part.getParent();

(这将是MPartStack

然后,您可以通过以下方式获取当前选中的孩子:

MUIElement selected = container.getSelectedElement();

答案 1 :(得分:2)

使用零件的父级及其选定的元素也对我有用。 partService.getActivePart()不起作用,因为在我们的应用程序中,我们有几个部分堆栈,我需要一个零件堆栈的一部分,当时不是焦点。 我还必须将MUIElement转换为MPart,因为我需要返回一个MPart,这不是问题,因为MPart从MUIElement扩展。 这是我的代码: enter image description here

答案 2 :(得分:0)

我找到了答案。它现在正在工作。

for (int i = 0; i < stack.getChildren().size(); i++) {
                        if (partService.isPartVisible((MPart) stack.getChildren().get(i))) {

                System.out.println("Storage of values"
                        + ((MPart) stack.getChildren().get(i)).getLabel());
                application.getTransientData().put(
                        ((MPart) stack.getChildren().get(i)).getLabel(),
                        selectedFiles);
            }
        }

我们应该使用partservice来检查特定堆栈是否可见。

答案 3 :(得分:0)

这对于Eclipse E4非常简单:

  1. 注入EPartService

  2. 然后从partService获得活动零件。

他是我的RefreshHandler的示例。

public class RefreshHandler {

    @Inject
    EModelService modelService;
    @Inject
    MWindow window;
    @Inject
    IEventBroker broker;
    @Inject
    EPartService partService;


    @Execute
    public void execute() {
        System.out.println(this.getClass().getSimpleName() + " called");
        MPart activePart = partService.getActivePart();

        if(activePart != null) {
            System.out.println("--->" + activePart.getElementId());
        }
    }

    @CanExecute
    public boolean canExecute() {
        MPerspective activePerspective = modelService.getActivePerspective(window);
        if (activePerspective != null && activePerspective.getElementId()
                .equals(IApplicationUIElementID.PERSPECTIVE_WORKINGSTORE_ID)) {
            return true;
        }
        return false;
    }

}