Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/ui/testplugin/util/IDialogTestPass.java')
-rw-r--r--core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/ui/testplugin/util/IDialogTestPass.java24
1 files changed, 14 insertions, 10 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/ui/testplugin/util/IDialogTestPass.java b/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/ui/testplugin/util/IDialogTestPass.java
index 5d48349e0b8..8169d8e17b4 100644
--- a/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/ui/testplugin/util/IDialogTestPass.java
+++ b/core/org.eclipse.cdt.ui.tests/src/org/eclipse/cdt/ui/testplugin/util/IDialogTestPass.java
@@ -10,46 +10,50 @@
*******************************************************************************/
package org.eclipse.cdt.ui.testplugin.util;
-
import java.util.ArrayList;
-
/*
* Interface to describe a visual test pass for a dialog test.
*/
public interface IDialogTestPass {
- /*
+ /**
* @return String The title of the test pass.
*/
public String title();
- /*
+
+ /**
* @return String The description of the test pass.
*/
public String description();
- /*
+
+ /**
* @return String The label of the test pass to be used
* in a selection list. The return includes an '&'
* if a mnemonic is desired.
*/
public String label();
- /*
+
+ /**
* @return ArrayList A list of items to appear in a checklist.
* The items in the list must be Strings and should include an
* '&' if a mnemonic is desired.
*/
- public ArrayList checkListTexts();
- /*
+ public ArrayList<String> checkListTexts();
+
+ /**
* @return String[] Associated failure messages that correspond
* to the checklist items. The size of this array should be the
* same size as the checklist.
*/
public String[] failureTexts();
- /*
+
+ /**
* @return String The test that corresponds to the test pass to
* which the tester will respond with a 'yes' or 'no'.
*/
public String queryText();
- /*
+
+ /**
* @return int A unique number that identifies the test pass.
*/
public int getID();

Back to the top