| Thread | Last Post | Replies |
|
| One missing link in javax.swing.table.* package | 05 Jul 2007 12:55 GMT | 11 |
In javax.swing.table.* package I can see the link between TableColumn and DefaultTableColumnModel by: DefaultTableColumnModel tableColumnModel = new DefaultTableColumnModel();
|
| Testing Eclipse plug-in view | 05 Jul 2007 12:50 GMT | 1 |
I'm creating a view plug-in for Eclipse and I really would like to be able to test it quicker, thus non having to start a new Eclipse instance. Of course I mean, testing the view logic (JFace and SWT). I'm trying then as Java Application but I've problems trying to
|
| loop through all controls on a panel without hardcoding | 03 Jul 2007 15:39 GMT | 5 |
In other environments (Delphi and .NET have things like ComponentCount and FindControl) I've used prior to Java, I could automatically find all the controls (or only the controls of a certain type, like checkboxes for example) on a form by passing that form off to some
|
| HELP: How to change stacking order without affecting focus? | 03 Jul 2007 06:21 GMT | 1 |
I have some custom widgets (children of JPanel) that need to be dynamically restacked. The only way I have found to do that is to remove a component from its container and then re-add it at index 0. The problem is if some subcomponent of the restacked widget has focus,
|
| Processing dialog | 02 Jul 2007 09:31 GMT | 4 |
I wonder how to do the following: i have a function connected to a button. works fine. But this function is very heavy in calculating and it locks up the user interface. So i thought to run the
|