Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [gef-dev] Weird Error...


See stack trace in  log file.



"Sabikhi, Harsh" <harsh@xxxxxx>
Sent by: gef-dev-bounces@xxxxxxxxxxx

2005.06.07 21:38

Please respond to
GEF development <gef-dev@xxxxxxxxxxx>

To
"GEF development" <gef-dev@xxxxxxxxxxx>
cc
Subject
RE: [gef-dev] Weird Error...





That is a very strange error because my editor's constructor is calling
the exact same code except for the System.out messages and I am not
seeing the ExceptionInInitializerError.

Harsh

-----Original Message-----
From: gef-dev-bounces@xxxxxxxxxxx [mailto:gef-dev-bounces@xxxxxxxxxxx]
On Behalf Of Adam Balgach
Sent: Tuesday, June 07, 2005 2:30 PM
To: gef-dev@xxxxxxxxxxx
Subject: [gef-dev] Weird Error...

Greetings All,

I am having a very weird error and perhaps someone here can help me work
through
it.  I am trying to implement my own editor which extends
GraphicalEditorWithFlyoutPalette .  In my constructor method i have

public myEditor() {
                System.out.println("myEditor: myEditor(): Trying to
DefaultEditDomain");
                DefaultEditDomain df = new DefaultEditDomain(this);
                System.out.println("Default Domain: "+this);
               
                setEditDomain(df);
}


when it tries to run the setEditDomain(df); it continually flags this
error:

Unhandled event loop exception
Reason:
java.lang.ExceptionInInitializerError

and i dont know how to get around this.  anyone know?

Cheers,
Adam.


-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
_______________________________________________
gef-dev mailing list
gef-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/gef-dev
_______________________________________________
gef-dev mailing list
gef-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/gef-dev


Back to the top