0
votes
1answer
291 views
What is the ‘best’ type of java.awt.image.BufferedImage?
I am creating a buffered image that is going to be a snapshot of a JComponent (via paint()) and rendered inside an …
1
vote
How can I convince GroovyShell to maintain state over eval() calls?
I am not sure about what you mean about declared classes not existing between evals, the following two scripts work as expected when evaled one after another:
class C {{println 'hi' …
1
vote
How do I get InputVerifier to work with an editable JComboBox
I wouldn't use the term workaround.
Based on all the swing code I've seen from a bunch of different sources that looks to be the canonical solution.
…
1
vote
Is there an easy way to change the behavior of a Java/Swing control when it gets focus?
A separate class that attaches a FocusListener to the desired text field can be written. All the focus listener would do is call selectAll() on the text widget when it gains the focus.
…
12
votes
How can I detect when an Exception’s been thrown globally in Java?
You probobly don't want to mail on any exception. There are lots of code in the JDK that actaully depend on exceptions to work normally. What I presume you are more inerested in are uncaught exce …
3
votes
What platforms JavaFX is/will be supported on?
JavaFX has three planned distributions.
JavaFX Desktop will run on Windows, Mac, Linux, and Solaris at FCS and will require Java SE. Support for Linux and Solaris will be fort …
1
vote
Modal dialogs in IE gets hidden behind IE if user clicks on IE pane
What argument are you using for the parent?
You may have better luck if you use the parent of the Applet.
javax.swing.SwingUtilities.getWindowAncestor(theApplet)
…
1
vote
How can I catch AWT thread exceptions in Java?
There is a distinction between uncaught exceptions in the EDT and outside the EDT.
…
0
votes
Why use Jython when you could just use Java?
Porting existing code to a new environment may be one reason. Some of your business logic and domain functionality may exist in Python, and the group that writes that code insists on using Python. …
4
votes
How can I share a variable or object between two or more Servlets?
Depends on the scope of the intended use of the data.
If the data is only used on a per-user basis, like user login info, page hit count, etc. use the session object
(httpServletRequest.ge …
1
vote
Use continue or Checked Exceptions when checking and processing objects
Use continue, especially in loops. Most Exceptions create a stack trace that can be a major performance hit in a tight loop. You need to override fillInStackTrace to avoid the hit.
Stylis …
0
votes
Java, Swing: how do I set the maximum width of a JTextField ?
Don't set any of the sizes on the text field. Instead set the column size to a non-zero value via setColumns or using the constructor with the column argument.
What is happening is that th …
4
votes
Do I have to explicitly call System.exit() in a Webstart application?
Because of bugs in WebStart, yes. WebStart starts up a "secure thread" for it's own purposes that interacts with the EDT. This SecureThread prevents the automatic termination of the Java process …
1
vote
Java Swing Table size problem
@jfpoilpret is correct in that the preferredScrollableViewpoet size needs to be managed. The groovy way would be to bind it to the preferred size of the table. So if this was added inside of the …
1
vote
How can I determine which menu item called an ActionListener?
While event.getSource() will definitely let you know which particular button the event came from it has the side effect of needing to track the generated buttons or snooping into the button. Also …
