/* Distributed Systems: Practical Exercise 2 Implementation of the bully election algorithm should be provided in this class. Don't alter the constructor. Complete the run method of this class. This template file (C) The University of Edinburgh, 2002 Author: Yussuf Abu Shaaban */ public class BullyNode extends Node implements Runnable{ final static int transmission_delay = 1000; final static int node_delay = 3000; public BullyNode(Node n){ super(); this.id = n.id; this.network = n.network; this.graphicalRep = n.graphicalRep; this.failed = n.failed; } public void run(){ ; } }