/*
 * Created on Jul 31, 2004
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package net.sourceforge.phpeclipse.phpunit;

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Text;

/**
 * @author Ali Echihabi
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class ResultsInfoComposite extends Composite {


	private Text reportArea; // TODO: replace with Tree display like JUnit
	
	/**
	 * @param arg0
	 * @param arg1
	 */
	public ResultsInfoComposite(Composite parent) {

		super(parent, SWT.NONE);

		setLayout(new FillLayout(SWT.VERTICAL));

		reportArea =
			new Text(
				this,
				SWT.MULTI
					| SWT.BORDER
					| SWT.WRAP
					| SWT.V_SCROLL
					| SWT.READ_ONLY);
		
	}

	
	
	public void updateInfo(TestPool testPool) {
		
		// take care of the TreeView and its content and label providers.
		
	}
	



	

}