InitializeImageRegistry Method


	/**
	 * Initialize the image registry by declaring all of the required graphics.
	 */
	protected void initializeImageRegistry()
	{
		String path = getIconPath();
		putImageInRegistry("ICON_ID_TEAM",      path+"team.gif");
		putImageInRegistry("ICON_ID_DEVELOPER", path+"developer.gif");
		putImageInRegistry("ICON_ID_TEAMFILTER",      path+"teamFilter.gif");
		putImageInRegistry("ICON_ID_DEVELOPERFILTER", path+"developerFilter.gif");
		// TO RETRIEVE AN ICON, CALL GETIMAGE OR GETIMAGEDESCRIPTOR WITH ITS XXX_ID ID
	}