Some branching/jumping

This commit is contained in:
Adam
2014-12-05 16:26:07 -05:00
parent ea556bef32
commit ea366191ea
44 changed files with 571 additions and 124 deletions

View File

@@ -0,0 +1,19 @@
package info.sigterm.deob.execution;
public abstract class ObjectInstanceBase
{
private Path path;
private ClassInstance type;
public ObjectInstanceBase(Path path, ClassInstance type)
{
this.path = path;
this.type = type;
}
public ClassInstance getType()
{
return type;
}
}