xxx yyyy

Greenhorn
+ Follow
since Feb 20, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by xxx yyyy

When you call JOptionPane.showMessageDialog(...) a Message Dialog (a Swing Component) is "realized". After this swing starts its event-dispatching thread.

Now you close the message dialog and the main-thread terminates, but
the swing event-dispatching thread is still running (the event-dispatching thread is not a "demeon" thread).
This is the reaseon why the VM does not exit.

Cheers,
Joern Kottmann
19 years ago
Hello,

I'm writting an eclipse editor and want to add
an new IStatusField to the status line.

I call this code from my editor's constructor:

StatusLineContributionItem item =
new StatusLineContributionItem("testItem", true, 10);

item.setText("test");

setStatusField(item, "testCat");

How do I do this right ?

Thanks for your help,
Joern Kottmann