We have an application that can mask numbers on nearly any application, win32, browser, terminals, even SWT that eclipse uses, but Swing is another issue.
For this question, assume I am part of the JVM and that I just inserted my jar on the classpath and I am the main program that calls someone else's main program so I have access to everything inside the JVM that I need BUT I did not write the original application that used these JTextFields!!!!
If an application has a JTextField, how can I modify it so it still stores the digits I set into it as well as mask it so it displays like the JPasswordField BUT still has all the listeners the original application writer has written. Also, when they click the Ok button or Next button or Submit button, my newly masked field should be applied just like it was the old JTextField and nothing changed.
thanks, Dean