jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/IndexedInstruction.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  * Denote entity that refers to an index, e.g. local variable instructions,
    25  * Denote entity that refers to an index, e.g. local variable instructions,
    27  * RET, CPInstruction, etc.
    26  * RET, CPInstruction, etc.
    28  *
    27  *
    29  * @author  <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
    28  * @version $Id: IndexedInstruction.java 1747278 2016-06-07 17:28:43Z britter $
    30  */
    29  */
    31 public interface IndexedInstruction {
    30 public interface IndexedInstruction {
    32   public int getIndex();
    31 
    33   public void setIndex(int index);
    32     int getIndex();
       
    33 
       
    34 
       
    35     void setIndex( int index );
    34 }
    36 }