Zest integration [message #844731] |
Sat, 14 April 2012 05:36  |
Eclipse User |
|
|
|
Goodmorning at all.
I'm trying to include Zest packages in my e4 application.
When I try to add one of Zest Packages in my plugin.xml's dependencies I've got this error:
java.lang.RuntimeException: No application id has been found.
(Complete log is in the attachment)
I've seen that it could be caused by a missing dependence, but which one?
Does anyone know a solution?
Very thank you,
regards.
|
|
|
|
|
Re: Zest integration [message #856008 is a reply to message #844731] |
Wed, 25 April 2012 05:38   |
Eclipse User |
|
|
|
Thank you all, bug fixed.
But I don't know where I had to create my graph to see it in a part.
I've tryed in @PostConstruct method, but it doesn't work.
@PostConstruct
public void createControls(Composite parent) {
Graph g = new Graph(shell, SWT.NONE);
GraphNode n = new GraphNode(g, SWT.NONE, "Paper");
GraphNode n2 = new GraphNode(g, SWT.NONE, "Rock");
GraphNode n3 = new GraphNode(g, SWT.NONE, "Scissors");
new GraphConnection(g, SWT.NONE, n, n2);
new GraphConnection(g, SWT.NONE, n2, n3);
new GraphConnection(g, SWT.NONE, n3, n);
g.setLayoutAlgorithm(new SpringLayoutAlgorithm(LayoutStyles.NO_LAYOUT_NODE_RESIZING), true);
}
Part is still empty. Suggestions?
Very thanks for your kind.
|
|
|
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.28090 seconds