vote up 0 vote down star

I get the following error in Eclipse:

DISPOSE_ON_CLOSE cannot be resolved something.java javadir/src/ line xxxx Java Problem

DISPOSE_ON_CLOSE is in javax.swing but even when I add import javax.swing.*; it doesn't work.

ANy ideas?

flag

63% accept rate

2 Answers

vote up 4 vote down check

Start with a fully qualified reference:

javax.swing.WindowConstants.DISPOSE_ON_CLOSE

then when you have time, read this section on static import

link|flag
vote up 0 vote down

DISPOSE_ON_CLOSE is not directly in javax.swing.*, but in WindowConstants interface, so you need to use WindowConstants.DISPOSE_ON_CLOSE.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.