//import ToddlerToy;

public class ToddlerManager 
{
	
	/**
	 * Method ToddlerManager
	 * Default Contructer
	 *
	 */
	public ToddlerManager() 
	{
		// TODO: Add your code here
	}

	/**
	 * Method main
	 *
	 *
	 * @param args
	 *
	 */
	public static ToddlerToy temp; // Object of type ToddlerToy
	
	public static void main(String[] args) 
	{		
		System.out.println("This is an object of type ToddlerManager.");
		temp.SetProductID(); // Set the Product ID number.
		temp.PrintProductID(); // Print the Product ID number.
		
	}	
}
