Object question with simple SAX application
Hi,
probably a dumb question, been doing some searching and can't come up with the answer.
I'm writing a simple Swing application that parses an xml file against a schema.
I have a class with my Gui that has an inner ActionListener, then I have my Parser class, and a separate content handler class,.
I have a tester class with a main method that creates a gui object. In one of the Listener classes in that class, I create a parser object. In the parser class, the handler class doesn't have an object, but the handler is registered with the parser class.
In the handler class is where all the callback methods are, I can create a string that has the results I want, but I don't know how to pass it back to the gui to display it.
thanks for any help. I can post the code, but there's a lot of it.
bp

