All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.d2j.dex.writer.insn.OpInsn Maven / Gradle / Ivy

There is a newer version: 2.4.22
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy