how to change the component visibility using plain java api
Hello,
I create a component using the plain java api. The code looks like this:
IComponentHandle component = wm.createComponent("Component Name", TeamArea , monitor);
IComponentOpFactory componentOpFactory = workspace.componentOpFactory();
IComponentOp addComponentOp = componentOpFactory.addComponent(component, false);
workspace.applyComponentOperations(Collections.singletonList(addComponentOp), false, monitor);
The eclipse GUI allows me to change the visibility for my component. How can I change the component visibility in the plain java api?
Steffen
I create a component using the plain java api. The code looks like this:
IComponentHandle component = wm.createComponent("Component Name", TeamArea , monitor);
IComponentOpFactory componentOpFactory = workspace.componentOpFactory();
IComponentOp addComponentOp = componentOpFactory.addComponent(component, false);
workspace.applyComponentOperations(Collections.singletonList(addComponentOp), false, monitor);
The eclipse GUI allows me to change the visibility for my component. How can I change the component visibility in the plain java api?
Steffen