0
votes
Best way to go about serializing and deserializing an object without losing its listeners?
In general I did not recognize any useful pattern for this. But the combination of several will be OK :). The question is how you handle deserialization? If using standard way you can introduce loo …
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
votes
Why should the interface for a Java class be prefered?
In general for your line of code it does not make sense to bother with interfaces. But, if we are talking about APIs there is a really good reason. I got small class
class Counter {
…
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
Tips for speeding up build time on Linux using ANT, Javacc, JUnit and compiling Java classes
Try be inspired by pragmatic programmer. Compile only what is necessary, have two or more test suites. One for quick tests, other for full tests. Consider if there is real need to use each build-st …
0
votes
Use the serialVersionUID or suppress warnings?
It is good to generate SVUID to every class implementing serializable. The reason is simple. You never know when it will be serialized by you or by some 3rd party. …
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 …
1
vote
Why does HttpServlet implement Serializable?
HttpServlet should by serialized to disk and survive restart of servlet container. For example tomcat allows you to set up flag which enable this kind of survive. The next option is transfer using …
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
votes
Java Media Framework on client side?
Did you consider to use Java FX? This technology is dealing with this problem of downloading media libraries and so no. Of course. It is still in dev …
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 …
2
votes
Java “must-have” development tools
IntelliJ IDEA (Anything else is wasting my time)
ANT + CI server (Hudson)
Issues tracking system. Bugzilla works well. Jira is fine.
Profiler, JProfiler
…
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 …
