
public class ToddlerToy 
{
	
	/**
	 * Method ToddlerToy
	 * Pupose: Default Contructer
	 *
	 */
	public ToddlerToy()	
	{
		
	}
	/**
	 * Method SetProductID
	 * Pupose: Set the Product ID number
	 *
	 */	
	public static void SetProductID()
	{
		ProductID = 23435;
	}
	
	/**
	 * Method PrintProductID
	 * Pupose: Print the Product ID number to the screen.
	 *
	 */
	
	public static void PrintProductID()
	{
		System.out.println("ProductID: " + ToddlerToy.ProductID + "\n");
	}
	private static int ProductID;
		
}
