Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJonas Helming2017-01-19 15:56:13 +0000
committerEugen Neufeld2017-01-20 12:53:51 +0000
commit5a4f128a00603d4a53cc7811b626e7689b27472d (patch)
tree950b35f473848670d84ebc9a1be1a184e4dcd379 /tests
parenta275042dd0788da453371533388f760ecc265778 (diff)
downloadorg.eclipse.emf.ecp.core-5a4f128a00603d4a53cc7811b626e7689b27472d.tar.gz
org.eclipse.emf.ecp.core-5a4f128a00603d4a53cc7811b626e7689b27472d.tar.xz
org.eclipse.emf.ecp.core-5a4f128a00603d4a53cc7811b626e7689b27472d.zip
TCI - added Java Doc
Change-Id: Icd64e331b49bc52bdb1e0da921f0d93b244149d5 Signed-off-by: Jonas Helming <jhelming@eclipsesource.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.emf.ecp.view.test.common.swt/src/org/eclipse/emf/ecp/view/test/common/swt/spi/DatabindingClassRunner.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/org.eclipse.emf.ecp.view.test.common.swt/src/org/eclipse/emf/ecp/view/test/common/swt/spi/DatabindingClassRunner.java b/tests/org.eclipse.emf.ecp.view.test.common.swt/src/org/eclipse/emf/ecp/view/test/common/swt/spi/DatabindingClassRunner.java
index 9effcfa1b4..e26ed49f48 100644
--- a/tests/org.eclipse.emf.ecp.view.test.common.swt/src/org/eclipse/emf/ecp/view/test/common/swt/spi/DatabindingClassRunner.java
+++ b/tests/org.eclipse.emf.ecp.view.test.common.swt/src/org/eclipse/emf/ecp/view/test/common/swt/spi/DatabindingClassRunner.java
@@ -28,8 +28,10 @@ import org.junit.runners.model.InitializationError;
public class DatabindingClassRunner extends BlockJUnit4ClassRunner {
/**
- * @param klass
- * @throws InitializationError
+ * Creates a DatabindingClassRunner providing a {@link Realm} to run {@code klass}.
+ *
+ * @param klass the test class to be executed
+ * @throws InitializationError if the test class is malformed.
*/
public DatabindingClassRunner(Class<?> klass) throws InitializationError {
super(klass);

Back to the top