DefaultSAXParser.java :  » IDE-Eclipse » Eclipse-plug-in-development » org » eclipse » pde » internal » core » builders » Java Open Source

Java Open Source » IDE Eclipse » Eclipse plug in development 
Eclipse plug in development » org » eclipse » pde » internal » core » builders » DefaultSAXParser.java
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.pde.internal.core.builders;

import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;

import javax.xml.parsers.ParserConfigurationException;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.pde.internal.core.util.SAXParserWrapper;
import org.xml.sax.SAXException;

public class DefaultSAXParser {
  
  public static void parse(IFile file, XMLErrorReporter reporter) {
    InputStream stream = null;
    SAXParserWrapper parser = null;
    try {
      parser = new SAXParserWrapper();
      stream = new BufferedInputStream(file.getContents());
      parser.parse(stream, reporter);
    } catch (CoreException e) {
    } catch (SAXException e) {
    } catch (IOException e) {
    } catch (ParserConfigurationException e) {
    } finally {
      try {
        if (stream != null)
          stream.close();
      } catch (IOException e1) {
      }
    }
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.