0
votes
SWT Link flickers with gradient background
Have you tried passing SWT.NO_BACKGROUND to your Link widget? It might get a little strange... and you may have to do a little more work to get the gui drawing properly, but that would be my first …
2
votes
Programmatically generate an Eclipse project
You should be able to accomplish this by writing a small Eclipse plugin. You could even extend it out to being a "headless" RCP app, and pass in the command line arguments you need.
The ba …
1
vote
Java - change focus on key press
final Text textBox = new Text(shell, SWT.NONE);
textBox.addKeyListener(new KeyAdapter() {
public void keyPressed(KeyEvent arg0) {
if (textBox.getText().equals("") == false) {
textBox …
0
votes
Eclipse encoding conversion
This should be in the Properties of each file.
Under the "Info" header, there is a "Text File encoding" group. You can change the selection to "Other", and choose the desired encoding from …
0
votes
Annoying eclipse automatically closing quotes
Jump out of the quotes by simply hitting Enter when you are done typing the string contents (at least, in the java editor).
…
0
votes
Error trying to use import.jxl… statements.
Sounds like you need to add the jxl jar file to your build path.
…
3
votes
JFace question: How do I select all items in a ListSelectionDialog?
List elementsToSelect = ...
dialog.setInitialElementSelections(elementsToSelect);
…
