4
votes
2answers
378 views
Get the VK int from an arbitrary char in java
How do you get the VK code from a char that is a letter? It seems like you should be able to do something like javax.swing.KeyStroke.getKeyStroke('c').getKeyCode(), but that doesn't w …
0
votes
4answers
192 views
Iterate / recurse through Containers and Components to find objects of a given class?
I've written a MnemonicsBuilder class for JLabels and AbstractButtons. I would like to write a convenience method setMnemonics( JFrame f ) that will iterate through every child of the …
0
votes
1answer
83 views
Generating Indexed Property Getters/Setters in Eclipse
By default, eclipse generates getters/setters according to JavaBeans regular properties style:
* public void setName(String name)
* public String getName()
As of J …
6
votes
<?> vs <T>
todd.run is totally right on, but that's only half the answer. There are also use cases for choosing <T> over <?> (or vice versa) that apply when you don't ad …
1
vote
Java Overloaded Methods
Also, at the end of the first method pause(), you need another curly brace:
public static void pause()
{
try
{
System.out.print("Press <Enter> to continue.. …
3
votes
How do i create a movie from a set of images using qtj and java?
I've done this through QTJ with the MovieMaker class from …
0
votes
Hiding a “local” type parameter in Java
If you really want to draw some ire, you can put the Bar class inside the Foo interface, and suck the T of that way. See …
1
vote
How can I fix a Java-GUI-program (swing), that it works with awesome-wm?
Easiest workaround - get wmname from suckless and use it to set the name of the window manager to LG3D:
wmname LG3D
…
