Hi,
I am writing an application where I need to parse multiple XML files received from server as a http response. For now, I have written one class for parsing one XML file. But I am not happy about writing one class for handling/parsing one XML response. Can I combine classes that I have written for XML parsing into one class ? Is it a good idea ? Would it hamper performance as If I combine classes, it would have lot of tags and every XML will be tested against all tags
?
I am using SAXParser for parsing XML response.
Please help.


