blob: 814d73d6ab02fc59aed8d3abc728f234d925d249 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.internal.webapp.parser;
import java.util.Properties;
import org.eclipse.help.internal.webapp.utils.JSonHelper;
import org.eclipse.help.internal.webapp.utils.XMLHelper;
import org.xml.sax.Attributes;
public class IndexFragmentParser extends ResultParser{
private ParseElement element = null;
public IndexFragmentParser() {
super(JSonHelper.TITLE);
}
@Override
public void startElement(String uri, String lname, String name, Attributes attrs) {
if (name.equalsIgnoreCase(XMLHelper.ELEMENT_NODE))
{
Properties properties = new Properties();
properties.put(JSonHelper.PROPERTY_NAME, JSonHelper.INDEX);
for (int i = 0; i < attrs.getLength(); i++) {
String qname = attrs.getQName(i);
String val = attrs.getValue(i);
properties.put(qname, val);
}
ParseElement elem = new ParseElement(properties, element);
if (element != null)
element.addChild(elem);
else
items.add(elem);
element = elem;
}
}
@Override
public void endElement(String uri, String lname, String name) {
if (element != null
&& name.equalsIgnoreCase(XMLHelper.ELEMENT_NODE)) {
element = element.getParent();
}
}
}