View Single Post
  #2 (permalink)  
Old 07-03-2008, 10:32 AM
coolnfunky_raj coolnfunky_raj is offline
Member
 
Join Date: Jul 2008
Posts: 6
coolnfunky_raj is on a distinguished road
Code:
public static void main(String args[]) { Test test = new Test(); test.startElement("ABC"); test.startElement("DEF"); test.endElement(); test.removeLastElement(); test.removeLastElement(); }
I forgot to mention, I cant do arr = new ArrayList<String>(); after test.endElement(); as I want to further process this ArrayList and keep adding it to arrOfArr.

Thanks in advance


~
Reply With Quote