com.googlecode.d2j.node.insn.JumpStmtNode 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 JumpStmtNode extends DexStmtNode {
public final int a;
public final int b;
public final DexLabel label;
public JumpStmtNode(Op op, int a, int b, DexLabel label) {
super(op);
this.a = a;
this.b = b;
this.label = label;
}
@Override
public void accept(DexCodeVisitor cv) {
cv.visitJumpStmt(op, a, b, label);
}
}