/**
 * WrapIO - Handles all user interaction for the BestWraps project (PA5)
 *
 * @author <your name here>
 * @version <put date here>
 */
public class WrapIO
{
	private Scanner keyboard;
	
	/**
	 * Default constructor - instantiate/initialize instance variables/references
	 */
	public WrapIO()
	{
		// to be written
	}
	
	/**
	 * Print the prompt and get an integer from the user. If an integer is not 
	 * given, then print the appropriate error message and reprompt for a 
	 * correct value.
	 *
	 * @param the prompt to print
	 * @param the integer entered by the user
	 */
	public int readInteger( String prompt )
	{
		
	}
	
	/**
	 * Print the prompt and wait for the user to press the <ENTER> key.
	 *
	 * @param the prompt to print
	 */
	public void pause( String prompt )
	{
		
	}
	
	/**
	 * Print the prompt and read a line of text entered by the user. 
	 *
	 * @param the prompt to print
	 * @return the line entered by the user
	 */
	public String readLine( String prompt )
	{
		
	}
	
	/**
	 * Print the message given in the parameter
	 *
	 * @param the message to print
	 */
	public void printLine( String message )
	{
		
	}
	
	/**
	 * Print the prompt given in the parameter
	 *
	 * @param the prompt to print
	 */
	public void printPrompt( String prompt )
	{
		
	}

} // class WrapIO