src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/FieldOrMethod.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    29 
    29 
    30 /**
    30 /**
    31  * Super class for InvokeInstruction and FieldInstruction, since they have
    31  * Super class for InvokeInstruction and FieldInstruction, since they have
    32  * some methods in common!
    32  * some methods in common!
    33  *
    33  *
    34  * @version $Id: FieldOrMethod.java 1749603 2016-06-21 20:50:19Z ggregory $
    34  * @version $Id$
    35  */
    35  */
    36 public abstract class FieldOrMethod extends CPInstruction implements LoadClass {
    36 public abstract class FieldOrMethod extends CPInstruction implements LoadClass {
    37 
    37 
    38     /**
    38     /**
    39      * Empty constructor needed for the Class.newInstance() statement in
    39      * Empty constructor needed for Instruction.readInstruction.
    40      * Instruction.readInstruction(). Not to be used otherwise.
    40      * Not to be used otherwise.
    41      */
    41      */
    42     FieldOrMethod() {
    42     FieldOrMethod() {
    43     }
    43     }
    44 
    44 
    45 
    45