1
vote
Are there any frameworks for handling database requests in swing applications?
Such a thing should be found in Netbeans for example. See RequestProcessor. But in simpler cases this is not required. Last time I need something like thread scheduling and control I simply used ne …
1
vote
What is the best “closable TabbedPane” Component in Java?
I really recommend to follow tutorial mentioned above. It is simple to create such a tab and you have full control over its behavior.
…
1
vote
Fast search in java swing applications?
It is possible of course. It is simple too. For drop down list of terms just use popup menu. This is simple. The background processing of entered text is simple too. Enjoy!
…
1
vote
Swing: Is there a way to differentiate between a user-caused ItemEvent and an application-caused one?
The Action and Reaction law is quite clear :). If you try to react on change there is no need to distinguish between user and application. I can imagine only one use case where you need to "disting …
5
votes
which library better for faster java application swt or swing?
There is no slow swing application. Just poorly written. And this also apply for SWT. The most application make better responses because of eclipse core architecture. Before J6 there were several p …
2
votes
Java- Changing swing background colour?
In general this is a little bit tricky. It depends on exact LaF you are using. For example. JGoodies use own color scheme which redefine this stuff. In general the property names are composed like …
1
vote
What’s the best way to add a self-update feature to a Java Swing application?
The Java Web Start is good choice. The GC stuff is not important. Classloading could be problem. But when you got trusted by user you can grant AllPermisions and you will be able to do custom class …
0
votes
Custom swing component - Turning a node into text
If you had to write your own component do it as simple as possible. In a lot of cases if you need a custom renderer then you don't care about interpretation by component or model. Model holds your …
0
votes
Bus or listeners/delegates in client-side Swing application?
Well, I can imagine the approach where models are updated using BUS like system and events from models are delegated using listeners. Simple scenario: I got server side which represents producer of …
0
votes
How do I create a custom JPanel extension and use it from the NetBeans palette?
http://www.netbeans.org search for Matisse.
…
2
votes
How to do a check before allowing editing of a given row in a JTable
Before editing/setting value the table model is asked via TableModel.isCellEditable(row,col) whether this cell is editable. Here you can implement your lock. and after TableModel.setValue(row,col,v …
0
votes
Accelerate 2D images in Java *without* disturbing JMenus
Well, I'm not sure if I fully understand your problem but it seems that main problem is with repainting the panel where image is displayed. Should you please provide your drawing routine which draw …
0
votes
Preserve JTable selection across TableModel change
This is default behavior. If you call fireTableDataChanged() the entire tabla is rebuild from scratch as you set entirely new model. In this case the selection is, naturally, lost. If …
4
votes
Java Swing GUI theming
Yes! But don't do that. If you need just change colors. Try JGoodies or Substance and obey writing your own PLAF.
…
4
votes
Embedding an application inside another application
This is a rather tricky. In general, native application such and Adobe Reader does not provide component which can be embedded into swing application. But in Windows there is COM/OLE approach which …
