src/java.xml/share/classes/com/sun/org/apache/xpath/internal/functions/Function3Args.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.
    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;
    24 import com.sun.org.apache.xalan.internal.res.XSLMessages;
       
    25 import com.sun.org.apache.xml.internal.utils.QName;
    25 import com.sun.org.apache.xpath.internal.Expression;
    26 import com.sun.org.apache.xpath.internal.Expression;
    26 import com.sun.org.apache.xpath.internal.ExpressionOwner;
    27 import com.sun.org.apache.xpath.internal.ExpressionOwner;
    27 import com.sun.org.apache.xpath.internal.XPathVisitor;
    28 import com.sun.org.apache.xpath.internal.XPathVisitor;
       
    29 import java.util.List;
    28 
    30 
    29 /**
    31 /**
    30  * Base class for functions that accept three arguments.
    32  * Base class for functions that accept three arguments.
    31  * @xsl.usage advanced
    33  * @xsl.usage advanced
    32  */
    34  */
    57    * corresponds to the variable reference qname.  The position of the
    59    * corresponds to the variable reference qname.  The position of the
    58    * QName in the vector from the start of the vector will be its position
    60    * QName in the vector from the start of the vector will be its position
    59    * in the stack frame (but variables above the globalsTop value will need
    61    * in the stack frame (but variables above the globalsTop value will need
    60    * to be offset to the current stack frame).
    62    * to be offset to the current stack frame).
    61    */
    63    */
    62   public void fixupVariables(java.util.Vector vars, int globalsSize)
    64   public void fixupVariables(List<QName> vars, int globalsSize)
    63   {
    65   {
    64     super.fixupVariables(vars, globalsSize);
    66     super.fixupVariables(vars, globalsSize);
    65     if(null != m_arg2)
    67     if(null != m_arg2)
    66       m_arg2.fixupVariables(vars, globalsSize);
    68       m_arg2.fixupVariables(vars, globalsSize);
    67   }
    69   }