package prolog.treeview;

import prolog.model.*;

public class StatementResult
{
	protected String title = null;
	protected IFactList result = null;

	public StatementResult()
	{
	}

	public IFactList getResult()
	{
		return this.result;
	}

	public void setResult( IFactList l )
	{
		this.result = l;
	}

	public void setTitle( String title )
	{
		this.title = title;
	}

	public String getTitle()
	{
		return this.title;
	}
}
