I want to print a string of text on the world based on a fulfilment of a condition. i have done the following in my Server class. if it's okay how can i call it on the World class
1 2 3 4 5 6 7 | public String electionStatus(){ if (getVotesGranted() >= qourum){ return "Election Successful" ; } else { return "Election Fail" ; } } |