Package eu.planets_project.pp.plato.services.characterisation.fits

Examples of eu.planets_project.pp.plato.services.characterisation.fits.FitsNamespaceContext


       
        String fitsXMLResult = result.getFitsXMLString();
        String fitsXMLSample = sample.getFitsXMLString();
       
        XmlExtractor extractor = new XmlExtractor();
        extractor.setNamespaceContext(new FitsNamespaceContext());
        if ((fitsXMLResult != null) && (fitsXMLSample != null)) {
             // so we have a fits xml, lets analyse it:
             try {
                 StringReader reader = new StringReader(fitsXMLResult);
                 Document fitsDocResult = extractor.getDocument(new InputSource(reader));
View Full Code Here

TOP

Related Classes of eu.planets_project.pp.plato.services.characterisation.fits.FitsNamespaceContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.