Tagged Questions
1
vote
2answers
390 views
Java controls animation - how to make them smooth and efficient
I am programming some custom controls in Java and using animation for transitions/fades/movements.
The way I am doing this is that I am starting a new thread and making adjustments to variables and ...
0
votes
5answers
843 views
The correct way of waiting for strings to become equal
In a Swing app a method should continue only after user enters a correct answer. The correct answer is stored in a String with user answer being set by a listener to another String. So, the code is
...