/** put your standard class doc here
 */
public class Vote
{
	// declare your fields here
	
	// create the voteAllen() method here
	
	// create the voteWebb() method here
	
	// create the voteOther(String name) method here
	
	/*********************************************************************
	 * toString prints the result of the election
	 *
	 * @return The String indicating the results of the election
	 ********************************************************************/
	public String toString()
	{
		String builder;
		if (other != 0)
			builder = String.format("Allen: %d\nWebb: %d\nOther: %d\n\n%s", 
				allen, webb, other, voteGetters);
		else
			builder = String.format("Allen: %d\nWebb: %d\nOther: %d",
				allen, webb, other);
		return builder;
	}
}