Tagged Questions

2
votes
2answers
1k views

Dispatch MouseEvent

Is there a way to dispatch MouseEvent, same as dispatchKeyEvent using the KeyboardFocusManager.getCurrentKeyboardFocusManager().addKeyEventDispatcher(listener); that happens before the event ...
1
vote
2answers
2k views

java.awt.Component.dispatchEvent()'s purpose and behavior

Most of the tutorials and documentation that I've been reading seem to indicate that most component communication takes place by subscription using listeners. The Java docs indicate that ...
0
votes
1answer
157 views

Manually Dispatching a DocumentEvent for testing UI element validation code

I'm testing a Swing GUI application using the UISpec4J testing framework. I'm testing validation code on a JTextField, but the framework does not support focus-change events, as it runs the ...