src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/ANEWARRAY.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    25 
    25 
    26 /**
    26 /**
    27  * ANEWARRAY -  Create new array of references
    27  * ANEWARRAY -  Create new array of references
    28  * <PRE>Stack: ..., count -&gt; ..., arrayref</PRE>
    28  * <PRE>Stack: ..., count -&gt; ..., arrayref</PRE>
    29  *
    29  *
    30  * @version $Id: ANEWARRAY.java 1747278 2016-06-07 17:28:43Z britter $
    30  * @version $Id$
    31  */
    31  */
    32 public class ANEWARRAY extends CPInstruction implements LoadClass, AllocationInstruction,
    32 public class ANEWARRAY extends CPInstruction implements LoadClass, AllocationInstruction,
    33         ExceptionThrower, StackConsumer, StackProducer {
    33         ExceptionThrower, StackConsumer, StackProducer {
    34 
    34 
    35     /**
    35     /**
    36      * Empty constructor needed for the Class.newInstance() statement in
    36      * Empty constructor needed for Instruction.readInstruction.
    37      * Instruction.readInstruction(). Not to be used otherwise.
    37      * Not to be used otherwise.
    38      */
    38      */
    39     ANEWARRAY() {
    39     ANEWARRAY() {
    40     }
    40     }
    41 
    41 
    42 
    42