public class Baldrick
{
	private String	george;
	private String	melchett;
	private String	darling;

	public Baldrick()
	{

	}

	/**
	 * @return the george
	 */
	public String getGeorge()
	{
		return george;
	}

	/**
	 * @param george
	 *            the george to set
	 */
	public void setGeorge( String george )
	{
		this.george = george;
	}

	/**
	 * @return the melchett
	 */
	public String getMelchett()
	{
		return melchett;
	}

	/**
	 * @param melchett
	 *            the melchett to set
	 */
	public void setMelchett( String melchett )
	{
		this.melchett = melchett;
	}

	/**
	 * @return the darling
	 */
	public String getDarling()
	{
		return darling;
	}

	/**
	 * @param darling
	 *            the darling to set
	 */
	public void setDarling( String darling )
	{
		this.darling = darling;
	}
}
