com.googlecode.d2j.dex.writer.insn.OpInsn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dex-writer Show documentation
Show all versions of dex-writer Show documentation
Dex/Dalvik writer for dex2jar
package com.googlecode.d2j.dex.writer.insn;
import com.googlecode.d2j.reader.Op;
public abstract class OpInsn extends Insn {
public Op op;
public OpInsn(Op op) {
this.op = op;
}
public final boolean isLabel() {
return true;
}
@Override
public int getCodeUnitSize() {
return op.format.size;
}
}