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{ )
private ParsedSiteInfo[] parsedInfo;
private int sites = 0;
private void createNewSite() {
this.parsedInfo[this.sites] = new ParsedSiteInfo();
this.sites++;
}
Still doesnt work
