![JAR search and dependency download from the Maven repository](/logo.png)
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 - 2025 Weber Informatics LLC | Privacy Policy