import java.util.Scanner;
/*************************************************************

NOTE: you will need to "flesh out" this class.  The method headers
are provided for you, but you must fill in all of the implementation
code and the documentation.  YOU MUST NOT CHANGE THE HEADERS.

You should write "stubs" for each of the methods, document each method,
test it against the tester programs, then fill in the methods themselves testing each
one independently.

Don't forget to document your class

**************************************************************/
public class Toolkit
{
	public int getInteger(Scanner scan, String prompt)
		
	public double getDouble(Scanner scan, String prompt)
		
	public String getToken(Scanner scan, String prompt)
	
	public String getLine(Scanner scan, String prompt)
		
	public String getEID(String last, String first, String middle)
		
	public String getInit(String last, String first, String middle)
		
	public String makePluralS(String word)
	
	public String makePluralIes(String word)
	
	public String capitalize(String word)
	
	public String makeSmall(String word)
	
}