< prev index next >

src/com/sun/org/apache/xalan/internal/xsltc/compiler/Sort.java

Print this page
rev 2127 : 8162572: Update License Header for all JAXP sources
Reviewed-by: lancea
   1 /*
   2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 /*
   5  * Copyright 2001-2005 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 package com.sun.org.apache.xalan.internal.xsltc.compiler;
  21 
  22 import java.util.ArrayList;
  23 import java.util.Vector;
  24 
  25 import com.sun.org.apache.bcel.internal.classfile.Field;
  26 import com.sun.org.apache.bcel.internal.generic.ALOAD;
  27 import com.sun.org.apache.bcel.internal.generic.ANEWARRAY;
  28 import com.sun.org.apache.bcel.internal.generic.ASTORE;
  29 import com.sun.org.apache.bcel.internal.generic.CHECKCAST;


   1 /*
   2  * Copyright (c) 2016, 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.xsltc.compiler;
  22 
  23 import java.util.ArrayList;
  24 import java.util.Vector;
  25 
  26 import com.sun.org.apache.bcel.internal.classfile.Field;
  27 import com.sun.org.apache.bcel.internal.generic.ALOAD;
  28 import com.sun.org.apache.bcel.internal.generic.ANEWARRAY;
  29 import com.sun.org.apache.bcel.internal.generic.ASTORE;
  30 import com.sun.org.apache.bcel.internal.generic.CHECKCAST;


< prev index next >