com.googlecode.d2j.node.insn.BaseSwitchStmtNode 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;
public abstract class BaseSwitchStmtNode extends DexStmtNode {
public final int a;
public final DexLabel[] labels;
protected BaseSwitchStmtNode(Op op, int a, DexLabel[] labels) {
super(op);
this.a = a;
this.labels = labels;
}
}