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

com.googlecode.d2j.node.insn.FilledNewArrayStmtNode 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 FilledNewArrayStmtNode extends DexStmtNode {

    public final int[] args;
    public final String type;

    public FilledNewArrayStmtNode(Op op, int[] args, String type) {
        super(op);
        this.args = args;
        this.type = type;
    }

    @Override
    public void accept(DexCodeVisitor cv) {
        cv.visitFilledNewArrayStmt(op, args, type);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy