X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/ResultsInfoComposite.java b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/ResultsInfoComposite.java index 627da42..ae43e74 100644 --- a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/ResultsInfoComposite.java +++ b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/ResultsInfoComposite.java @@ -1,9 +1,11 @@ -/* - * Created on Jul 31, 2004 +/************************************************************************* + * @author Ali Echihabi (ali_echihabi@ieee.org, ali.echihabi@souss.ca) * - * To change the template for this generated file go to - * Window>Preferences>Java>Code Generation>Code and Comments - */ + * Plugin for PHP unit Testing. + * www.phpeclipse.de + * + *************************************************************************/ + package net.sourceforge.phpeclipse.phpunit; import net.sourceforge.phpeclipse.phpunit.testpool.TestPool; @@ -14,18 +16,10 @@ import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; -/** - * @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 TreeViewer treeViewer; - + /** * @param arg0 * @param arg1 @@ -36,34 +30,34 @@ public class ResultsInfoComposite extends Composite { GridLayout layout = new GridLayout(); layout.numColumns = 1; - + setLayout(layout); - + treeViewer = new TreeViewer(this, SWT.BORDER | SWT.SHADOW_ETCHED_IN); - treeViewer.getControl().setLayoutData(new GridData(GridData.VERTICAL_ALIGN_FILL | GridData.FILL_BOTH | GridData.GRAB_VERTICAL)); - - + treeViewer.getControl().setLayoutData( + new GridData(GridData.VERTICAL_ALIGN_FILL | GridData.FILL_BOTH + | GridData.GRAB_VERTICAL)); + TestPoolLabelProvider labelProvider = new TestPoolLabelProvider(); - TestPoolContentProvider contentProvider= new TestPoolContentProvider(); - + TestPoolContentProvider contentProvider = new TestPoolContentProvider(); + treeViewer.setContentProvider(contentProvider); treeViewer.setLabelProvider(labelProvider); - + } - public void resetInfo() { - + treeViewer.setInput(null); } - + public void updateInfo(TestPool testPool) { - + // take care of the TreeView and its content and label providers. - + treeViewer.setInput(testPool.getRoot()); - + } }