jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/ConstantPushInstruction.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  * Denotes a push instruction that produces a literal on the stack
    25  * Denotes a push instruction that produces a literal on the stack
    27  * such as  SIPUSH, BIPUSH, ICONST, etc.
    26  * such as  SIPUSH, BIPUSH, ICONST, etc.
    28  *
    27  *
    29  * @author  <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
    28  * @version $Id: ConstantPushInstruction.java 1747278 2016-06-07 17:28:43Z britter $
    30 
    29 
    31  * @see ICONST
    30  * @see ICONST
    32  * @see SIPUSH
    31  * @see SIPUSH
    33  */
    32  */
    34 public interface ConstantPushInstruction extends PushInstruction, TypedInstruction {
    33 public interface ConstantPushInstruction extends PushInstruction, TypedInstruction {
    35   public Number getValue();
    34 
       
    35     Number getValue();
    36 }
    36 }