src/java.xml/share/classes/com/sun/org/apache/xpath/internal/functions/FuncCurrent.java
changeset 47359 e1a6c0168741
parent 47216 71c04702a3d5
child 48409 5ab69533994b
equal deleted inserted replaced
47358:d07d5f7cab35 47359:e1a6c0168741
     1 /*
     1 /*
     2  * reserved comment block
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT REMOVE OR ALTER!
     3  * @LastModified: Oct 2017
     4  */
     4  */
     5 /*
     5 /*
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     7  * contributor license agreements.  See the NOTICE file distributed with
     7  * contributor license agreements.  See the NOTICE file distributed with
     8  * this work for additional information regarding copyright ownership.
     8  * this work for additional information regarding copyright ownership.
    19  * limitations under the License.
    19  * limitations under the License.
    20  */
    20  */
    21 
    21 
    22 package com.sun.org.apache.xpath.internal.functions;
    22 package com.sun.org.apache.xpath.internal.functions;
    23 
    23 
       
    24 import com.sun.org.apache.xalan.internal.res.XSLMessages;
       
    25 import com.sun.org.apache.xalan.internal.res.XSLTErrorResources;
    24 import com.sun.org.apache.xml.internal.dtm.DTM;
    26 import com.sun.org.apache.xml.internal.dtm.DTM;
    25 import com.sun.org.apache.xml.internal.dtm.DTMIterator;
    27 import com.sun.org.apache.xml.internal.utils.QName;
    26 import com.sun.org.apache.xpath.internal.XPathContext;
    28 import com.sun.org.apache.xpath.internal.XPathContext;
    27 import com.sun.org.apache.xpath.internal.axes.LocPathIterator;
    29 import com.sun.org.apache.xpath.internal.axes.LocPathIterator;
    28 import com.sun.org.apache.xpath.internal.axes.PredicatedNodeTest;
    30 import com.sun.org.apache.xpath.internal.axes.PredicatedNodeTest;
       
    31 import com.sun.org.apache.xpath.internal.axes.SubContextList;
    29 import com.sun.org.apache.xpath.internal.objects.XNodeSet;
    32 import com.sun.org.apache.xpath.internal.objects.XNodeSet;
    30 import com.sun.org.apache.xpath.internal.objects.XObject;
    33 import com.sun.org.apache.xpath.internal.objects.XObject;
    31 import com.sun.org.apache.xpath.internal.axes.SubContextList;
       
    32 import com.sun.org.apache.xpath.internal.patterns.StepPattern;
    34 import com.sun.org.apache.xpath.internal.patterns.StepPattern;
    33 import com.sun.org.apache.xalan.internal.res.XSLMessages;
    35 import java.util.List;
    34 import com.sun.org.apache.xalan.internal.res.XSLTErrorResources;
       
    35 
    36 
    36 
    37 
    37 /**
    38 /**
    38  * Execute the current() function.
    39  * Execute the current() function.
    39  * @xsl.usage advanced
    40  * @xsl.usage advanced
    73   }
    74   }
    74 
    75 
    75   /**
    76   /**
    76    * No arguments to process, so this does nothing.
    77    * No arguments to process, so this does nothing.
    77    */
    78    */
    78   public void fixupVariables(java.util.Vector vars, int globalsSize)
    79   public void fixupVariables(List<QName> vars, int globalsSize)
    79   {
    80   {
    80     // no-op
    81     // no-op
    81   }
    82   }
    82 
    83 
    83 }
    84 }