< prev index next >

src/com/sun/org/apache/xalan/internal/xsltc/trax/TrAXFilter.java

Print this page
rev 2127 : 8162572: Update License Header for all JAXP sources
Reviewed-by: lancea
   1 /*
   2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 /*
   5  * Copyright 2001-2004 The Apache Software Foundation.
   6  *
   7  * Licensed under the Apache License, Version 2.0 (the "License");
   8  * you may not use this file except in compliance with the License.
   9  * You may obtain a copy of the License at

  10  *
  11  *     http://www.apache.org/licenses/LICENSE-2.0
  12  *
  13  * Unless required by applicable law or agreed to in writing, software
  14  * distributed under the License is distributed on an "AS IS" BASIS,
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16  * See the License for the specific language governing permissions and
  17  * limitations under the License.
  18  */
  19 /*
  20  * $Id: TrAXFilter.java,v 1.2.4.1 2005/09/06 12:23:19 pvedula Exp $
  21  */
  22 
  23 
  24 package com.sun.org.apache.xalan.internal.xsltc.trax;
  25 
  26 import java.io.IOException;
  27 
  28 import javax.xml.transform.ErrorListener;
  29 import javax.xml.transform.Templates;
  30 import javax.xml.transform.Transformer;
  31 import javax.xml.transform.TransformerConfigurationException;
  32 import javax.xml.transform.sax.SAXResult;
  33 
  34 import com.sun.org.apache.xml.internal.utils.XMLReaderManager;
  35 import jdk.xml.internal.JdkXmlUtils;
  36 
  37 import org.xml.sax.ContentHandler;
  38 import org.xml.sax.InputSource;
  39 import org.xml.sax.SAXException;
  40 import org.xml.sax.XMLReader;


   1 /*
   2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 /*
   5  * Licensed to the Apache Software Foundation (ASF) under one or more
   6  * contributor license agreements.  See the NOTICE file distributed with
   7  * this work for additional information regarding copyright ownership.
   8  * The ASF licenses this file to You under the Apache License, Version 2.0
   9  * (the "License"); you may not use this file except in compliance with
  10  * the License.  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.



  19  */
  20 
  21 
  22 package com.sun.org.apache.xalan.internal.xsltc.trax;
  23 
  24 import java.io.IOException;
  25 
  26 import javax.xml.transform.ErrorListener;
  27 import javax.xml.transform.Templates;
  28 import javax.xml.transform.Transformer;
  29 import javax.xml.transform.TransformerConfigurationException;
  30 import javax.xml.transform.sax.SAXResult;
  31 
  32 import com.sun.org.apache.xml.internal.utils.XMLReaderManager;
  33 import jdk.xml.internal.JdkXmlUtils;
  34 
  35 import org.xml.sax.ContentHandler;
  36 import org.xml.sax.InputSource;
  37 import org.xml.sax.SAXException;
  38 import org.xml.sax.XMLReader;


< prev index next >