com.googlecode.dex2jar.ir.ts.StatedTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
package com.googlecode.dex2jar.ir.ts;
import com.googlecode.dex2jar.ir.IrMethod;
public abstract class StatedTransformer implements Transformer {
public abstract boolean transformReportChanged(IrMethod method);
@Override
public void transform(IrMethod method) {
transformReportChanged(method);
}
}