jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/F2D.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  * F2D - Convert float to double
    25  * F2D - Convert float to double
    27  * <PRE>Stack: ..., value -&gt; ..., result.word1, result.word2</PRE>
    26  * <PRE>Stack: ..., value -&gt; ..., result.word1, result.word2</PRE>
    28  *
    27  *
    29  * @author  <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
    28  * @version $Id: F2D.java 1747278 2016-06-07 17:28:43Z britter $
    30  */
    29  */
    31 public class F2D extends ConversionInstruction {
    30 public class F2D extends ConversionInstruction {
    32   /** Convert float to double
    31 
    33    */
    32     /** Convert float to double
    34   public F2D() {
    33      */
    35     super(com.sun.org.apache.bcel.internal.Constants.F2D);
    34     public F2D() {
    36   }
    35         super(com.sun.org.apache.bcel.internal.Const.F2D);
       
    36     }
    37 
    37 
    38 
    38 
    39   /**
    39     /**
    40    * Call corresponding visitor method(s). The order is:
    40      * Call corresponding visitor method(s). The order is:
    41    * Call visitor methods of implemented interfaces first, then
    41      * Call visitor methods of implemented interfaces first, then
    42    * call methods according to the class hierarchy in descending order,
    42      * call methods according to the class hierarchy in descending order,
    43    * i.e., the most specific visitXXX() call comes last.
    43      * i.e., the most specific visitXXX() call comes last.
    44    *
    44      *
    45    * @param v Visitor object
    45      * @param v Visitor object
    46    */
    46      */
    47   public void accept(Visitor v) {
    47     @Override
    48     v.visitTypedInstruction(this);
    48     public void accept( final Visitor v ) {
    49     v.visitStackProducer(this);
    49         v.visitTypedInstruction(this);
    50     v.visitStackConsumer(this);
    50         v.visitStackProducer(this);
    51     v.visitConversionInstruction(this);
    51         v.visitStackConsumer(this);
    52     v.visitF2D(this);
    52         v.visitConversionInstruction(this);
    53   }
    53         v.visitF2D(this);
       
    54     }
    54 }
    55 }