< prev index next >

src/com/sun/org/apache/xalan/internal/lib/Extensions.java

Print this page
rev 2127 : 8162572: Update License Header for all JAXP sources
Reviewed-by: lancea
   1 /*
   2  * Copyright (c) 2005, 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  * $Id: Extensions.java,v 1.2.4.1 2005/09/10 18:53:32 jeffsuttor Exp $
  22  */
  23 package com.sun.org.apache.xalan.internal.lib;
  24 
  25 import com.sun.org.apache.xalan.internal.extensions.ExpressionContext;
  26 import com.sun.org.apache.xalan.internal.utils.ObjectFactory;
  27 import com.sun.org.apache.xalan.internal.xslt.EnvironmentCheck;
  28 import com.sun.org.apache.xpath.internal.NodeSet;
  29 import com.sun.org.apache.xpath.internal.objects.XBoolean;
  30 import com.sun.org.apache.xpath.internal.objects.XNumber;
  31 import com.sun.org.apache.xpath.internal.objects.XObject;
  32 import java.util.Hashtable;
  33 import java.util.Map;
  34 import java.util.StringTokenizer;
  35 import jdk.xml.internal.JdkXmlUtils;
  36 
  37 import org.w3c.dom.Document;
  38 import org.w3c.dom.DocumentFragment;
  39 import org.w3c.dom.Node;
  40 import org.w3c.dom.NodeList;
  41 import org.w3c.dom.Text;
  42 import org.w3c.dom.traversal.NodeIterator;


   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 package com.sun.org.apache.xalan.internal.lib;
  22 
  23 import com.sun.org.apache.xalan.internal.extensions.ExpressionContext;
  24 import com.sun.org.apache.xalan.internal.utils.ObjectFactory;
  25 import com.sun.org.apache.xalan.internal.xslt.EnvironmentCheck;
  26 import com.sun.org.apache.xpath.internal.NodeSet;
  27 import com.sun.org.apache.xpath.internal.objects.XBoolean;
  28 import com.sun.org.apache.xpath.internal.objects.XNumber;
  29 import com.sun.org.apache.xpath.internal.objects.XObject;
  30 import java.util.Hashtable;
  31 import java.util.Map;
  32 import java.util.StringTokenizer;
  33 import jdk.xml.internal.JdkXmlUtils;
  34 
  35 import org.w3c.dom.Document;
  36 import org.w3c.dom.DocumentFragment;
  37 import org.w3c.dom.Node;
  38 import org.w3c.dom.NodeList;
  39 import org.w3c.dom.Text;
  40 import org.w3c.dom.traversal.NodeIterator;


< prev index next >