blob: aec739388a7db26560c7f747007f0a38c026f2f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.define.parser.handlers;
import java.util.List;
import org.eclipse.osee.framework.jdk.core.util.xml.Jaxp;
import org.eclipse.osee.ote.define.TestRunField;
import org.w3c.dom.Element;
/**
* @author Roberto E. Escobar
*/
public class RuntimeVersionsHandler extends AbstractParseHandler {
/*
* (non-Javadoc)
*
* @see org.eclipse.osee.ote.ui.define.parser.handlers.AbstractParseHandler#processSaxChunk(org.w3c.dom.Element)
*/
@Override
protected void processSaxChunk(Element element) {
List<Element> versions = Jaxp.getChildDirects(element, "Version");
StringBuilder sb = new StringBuilder();
for (Element el : versions) {
sb.append(Jaxp.getElementCharacterData(el));
sb.append(" ");
}
notifyOnDataEvent(TestRunField.SYSTEM_OSEE_SERVER_JAR_VERSIONS.toString(), sb.toString());
}
}