View Single Post
  #2 (permalink)  
Old 01-22-2008, 09:08 AM
bluefloyd8 bluefloyd8 is offline
Member
 
Join Date: Jan 2008
Posts: 4
bluefloyd8 is on a distinguished road
I just tried the following code as a change. I wasnt putting "this" in front of variables. My code shown is part of a class ( public class ExampleHandler extends DefaultHandler{ )

Code:
private ParsedSiteInfo[] parsedInfo; private int sites = 0; private void createNewSite() { this.parsedInfo[this.sites] = new ParsedSiteInfo(); this.sites++; }
Still doesnt work
Reply With Quote