Look at the API for JTextField. See http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTextField.html.
Now look at the example of an UpperCaseField. Within the implementation of insertString...
Type: Posts; User: SirRuncibleSpoon; Keyword(s):
Look at the API for JTextField. See http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTextField.html.
Now look at the example of an UpperCaseField. Within the implementation of insertString...
That's right. In my current application I have a single class (SwingAction) that implements java.swing.Action. The actionPerformed method on this class feeds a request to my front controller to...
I think you are right Andy. My starting point was Struts, so I guess it was always going to look like any Web FrontController type framework.
I've had a quick look at the article you linked and...
This is my first stab at how a state machine might be used. I still not clear on how I would like to define views, so I'm going to leave that out.
Please don't look for any sort of logical...
There is a downside to the state machine UI independance. You cannot use pop ups during commands for warnings, errors and choices without spoiling it.
Of course if it comes to a choice between...
Interestingly I have been pondering using the same workflow engine driving two different user interfaces, but for a slightly different reason.
The point-of-sale app I am working on has two UIs. ...
Thanks for the GlazedLists reference. The EventList looks like just the thing I am looking for, now I just need to get hibernate use it. Rats - single inheritance.
I've got to say that building...
Thanks Ollie. I will dig a bit deeper. I look forward to using Spring RCP in the future.
Will you be providing an implementation of java.util.List that fires property change events when items in...
About six months ago I designed and built a very lightweight framework for a Swing application. On reading through the Spring RCP User Documentation, it seems to share some ideas, although the...