summaryrefslogtreecommitdiffstats
path: root/bcel-builder/src/org/aspectj/apache/bcel/generic/InstructionCLV.java
blob: 85ae588e591173eb6d6280353f8f898a66f0bd22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.aspectj.apache.bcel.generic;

/**
 * A small subclass of the local variable accessing instruction class InstructionLV - this subclass does
 * not allow the index to be altered.
 */
public class InstructionCLV extends InstructionLV {

	public InstructionCLV(short opcode) {
		super(opcode);
	}
	
	public InstructionCLV(short opcode,int localVariableIndex) {
		super(opcode,localVariableIndex);
	}
	
	public void setIndex(int localVariableIndex) {
		if (localVariableIndex!=getIndex()) {
			throw new ClassGenException("Do not attempt to modify the index to '"+localVariableIndex+"' for this constant instruction: "+this);
		}
	}

	public boolean canSetIndex() {
	    return false;
	}

}