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 readInteger(String prompt)
		
	public double readDouble(String prompt)
		
	public String readToken(String prompt)
	
	public String readLine(String prompt)
		
	public String makePluralS(String word)
	
	public String makePluralIes(String word)
	
	public String makePluralEs(String word)
	
	public String capitalize(String word)
	
	public String makeSmall(String word)
   
   public String makePossessive(String word)
   
   public String makePossessiveS(String word)
	
}