Class writing, call graph, eclipse project

This commit is contained in:
Adam
2015-04-25 12:47:06 -04:00
parent 4dc6bfc949
commit a9f953b46a
72 changed files with 903 additions and 18 deletions

View File

@@ -0,0 +1,17 @@
package info.sigterm.deob.callgraph;
import info.sigterm.deob.Method;
import info.sigterm.deob.attributes.code.Instruction;
public class Node
{
public Method from, to;
public Instruction ins;
public Node(Method from, Method to, Instruction ins)
{
this.from = from;
this.to = to;
this.ins = ins;
}
}