package com.sun.ukit.jaxp;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.SAXException;
import org.xml.sax.SAXNotRecognizedException;
import org.xml.sax.SAXNotSupportedException;

public class ParserFactory extends SAXParserFactory
{
 public static final String FEATURE_NS = "http://xml.org/sax/features/namespaces";
 public static final String FEATURE_PREF = "http://xml.org/sax/features/namespace-prefixes";

 public ParserFactory()
 {
 }
 
 public SAXParser newSAXParser() throws SAXException, ParserConfigurationException
 {
  return null;
 }
 
 public void setNamespaceAware(boolean)
 {
 }
 
 public void setFeature(String, boolean) throws SAXNotSupportedException, SAXNotRecognizedException, ParserConfigurationException
 {
 }
 
 public boolean getFeature(String) throws SAXNotSupportedException, SAXNotRecognizedException, ParserConfigurationException
 {
  return false;
 }
 
}