com.googlecode.d2j.node.insn.PackedSwitchStmtNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
package com.googlecode.d2j.node.insn;
import com.googlecode.d2j.DexLabel;
import com.googlecode.d2j.reader.Op;
import com.googlecode.d2j.visitors.DexCodeVisitor;
public class PackedSwitchStmtNode extends BaseSwitchStmtNode {
public final int first_case;
public PackedSwitchStmtNode(Op op, int a, int first_case, DexLabel[] labels) {
super(op, a,labels);
this.first_case = first_case;
}
@Override
public void accept(DexCodeVisitor cv) {
cv.visitPackedSwitchStmt(op, a, first_case, labels);
}
}