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

com.googlecode.dex2jar.ir.stmt.BaseSwitchStmt Maven / Gradle / Ivy

package com.googlecode.dex2jar.ir.stmt;

import com.googlecode.dex2jar.ir.expr.Value;
import com.googlecode.dex2jar.ir.stmt.Stmt.E1Stmt;

/**
 * Parent class of {@link LookupSwitchStmt} and {@link TableSwitchStmt}
 *
 * @author Panxiaobo
 */
public abstract class BaseSwitchStmt extends E1Stmt {

    public BaseSwitchStmt(ST type, Value op) {
        super(type, op);
    }

    public LabelStmt[] targets;

    public LabelStmt defaultTarget;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy