/* Distributed Systems: Practical Exercise 2 Implementation of the ring-based 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 RingNode extends Node implements Runnable{ public RingNode(Node n){ super(); this.id = n.id; this.network = n.network; this.graphicalRep = n.graphicalRep; } public void run(){ ; } }