315316317318319320321
private Node node; public AppThreadCaller(String caller, String callee) { this.caller = caller; this.callee = callee; this.node = new Node(); }
345346347348349350351
private final String callee; private Node node; public AppThreadCallee(String callee) { this.callee = callee; this.node = new Node(); }