jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/LADD.java
changeset 46174 5611d2529b49
parent 44797 8b3b3b911b8a
equal deleted inserted replaced
46173:5546b5710844 46174:5611d2529b49
    19  * limitations under the License.
    19  * limitations under the License.
    20  */
    20  */
    21 
    21 
    22 package com.sun.org.apache.bcel.internal.generic;
    22 package com.sun.org.apache.bcel.internal.generic;
    23 
    23 
    24 
       
    25 /**
    24 /**
    26  * LADD - Add longs
    25  * LADD - Add longs
    27  * <PRE>Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 -&gt;</PRE>
    26  * <PRE>Stack: ..., value1.word1, value1.word2, value2.word1, value2.word2 -&gt;</PRE>
    28  *        ..., result.word1, result.word2
    27  *        ..., result.word1, result.word2
    29  *
    28  *
    30  * @author  <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
    29  * @version $Id: LADD.java 1747278 2016-06-07 17:28:43Z britter $
    31  */
    30  */
    32 public class LADD extends ArithmeticInstruction {
    31 public class LADD extends ArithmeticInstruction {
    33   public LADD() {
    32 
    34     super(com.sun.org.apache.bcel.internal.Constants.LADD);
    33     public LADD() {
    35   }
    34         super(com.sun.org.apache.bcel.internal.Const.LADD);
       
    35     }
    36 
    36 
    37 
    37 
    38   /**
    38     /**
    39    * Call corresponding visitor method(s). The order is:
    39      * Call corresponding visitor method(s). The order is:
    40    * Call visitor methods of implemented interfaces first, then
    40      * Call visitor methods of implemented interfaces first, then
    41    * call methods according to the class hierarchy in descending order,
    41      * call methods according to the class hierarchy in descending order,
    42    * i.e., the most specific visitXXX() call comes last.
    42      * i.e., the most specific visitXXX() call comes last.
    43    *
    43      *
    44    * @param v Visitor object
    44      * @param v Visitor object
    45    */
    45      */
    46   public void accept(Visitor v) {
    46     @Override
    47     v.visitTypedInstruction(this);
    47     public void accept( final Visitor v ) {
    48     v.visitStackProducer(this);
    48         v.visitTypedInstruction(this);
    49     v.visitStackConsumer(this);
    49         v.visitStackProducer(this);
    50     v.visitArithmeticInstruction(this);
    50         v.visitStackConsumer(this);
    51     v.visitLADD(this);
    51         v.visitArithmeticInstruction(this);
    52   }
    52         v.visitLADD(this);
       
    53     }
    53 }
    54 }