Class writing, call graph, eclipse project
This commit is contained in:
17
src/main/java/info/sigterm/deob/callgraph/Node.java
Normal file
17
src/main/java/info/sigterm/deob/callgraph/Node.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user