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

com.googlecode.d2j.node.insn.Stmt2R1NNode Maven / Gradle / Ivy

There is a newer version: 2.25.11
Show newest version
package com.googlecode.d2j.node.insn;

import com.googlecode.d2j.reader.Op;
import com.googlecode.d2j.visitors.DexCodeVisitor;

public class Stmt2R1NNode extends DexStmtNode {

    public final int distReg;
    public final int srcReg;
    public final int content;

    public Stmt2R1NNode(Op op, int distReg, int srcReg, int content) {
        super(op);
        this.distReg = distReg;
        this.srcReg = srcReg;
        this.content = content;
    }

    @Override
    public void accept(DexCodeVisitor cv) {
        cv.visitStmt2R1N(op, distReg, srcReg, content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy