public class Blackadder
{
	private Baldrick baldrick;
	private String bob;

	public Blackadder(){

	}

	/**
	 * @return the baldrick
	 */
	public Baldrick getBaldrick()
	{
		return baldrick;
	}

	/**
	 * @param baldrick the baldrick to set
	 */
	public void setBaldrick( Baldrick baldrick )
	{
		this.baldrick = baldrick;
	}

	/**
	 * @return the bob
	 */
	public String getBob()
	{
		return bob;
	}

	/**
	 * @param bob the bob to set
	 */
	public void setBob( String bob )
	{
		this.bob = bob;
	}


}
