Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2012-12-19 12:46:53 +0000
committerGerrit Code Review @ Eclipse.org2013-01-08 10:21:30 +0000
commitc878ee8136d60ac8a8306007de744e1f979819b0 (patch)
tree40217aee3f51777221e46e5d5b182e4fffbc35b2 /org.eclipse.swtbot.swt.finder
parentc43009b92512f8463da6192c7662d60ff6a3fbe5 (diff)
downloadorg.eclipse.swtbot-c878ee8136d60ac8a8306007de744e1f979819b0.tar.gz
org.eclipse.swtbot-c878ee8136d60ac8a8306007de744e1f979819b0.tar.xz
org.eclipse.swtbot-c878ee8136d60ac8a8306007de744e1f979819b0.zip
A Code Generator that records events and generate relevant code
Diffstat (limited to 'org.eclipse.swtbot.swt.finder')
-rw-r--r--org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/SWTBotText.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/SWTBotText.java b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/SWTBotText.java
index e6641e9a..86810f1f 100644
--- a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/SWTBotText.java
+++ b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/SWTBotText.java
@@ -23,7 +23,7 @@ import org.hamcrest.SelfDescribing;
/**
* This represents a {@link Text} widget.
- *
+ *
* @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com>
* @version $Id$
*/
@@ -32,7 +32,7 @@ public class SWTBotText extends AbstractSWTBot<Text> {
/**
* Constructs a new instance of this object.
- *
+ *
* @param w the widget.
* @throws WidgetNotFoundException if the widget is <code>null</code> or widget has been disposed.
*/
@@ -42,7 +42,7 @@ public class SWTBotText extends AbstractSWTBot<Text> {
/**
* Constructs a new instance of this object.
- *
+ *
* @param w the widget.
* @param description the description of the widget, this will be reported by {@link #toString()}
* @throws WidgetNotFoundException if the widget is <code>null</code> or widget has been disposed.

Back to the top