Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 411349

Summary: Provide possibility to generate more than one line of code & imports using one generation rule
Product: [Technology] SWTBot Reporter: Rastislav Wagner <rawagner>
Component: Recorder/GeneratorAssignee: Rastislav Wagner <rawagner>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: mistria
Version: unspecified   
Target Milestone: 2.2.0   
Hardware: All   
OS: All   
Whiteboard:

Description Rastislav Wagner CLA 2013-06-21 05:42:50 EDT
This might come handy if in the future we will want to generate more "chattier" code ie
instead of 
bot.shell("New Project").activate();

we will do

SWTBotShell shell = bot.shell("New Project");
shell.activate();


and also for RedDeer which needs two lines of code to identify widget inside group etc

SWTBot: bot.button("group","buttonText");
RedDeer: new Group("group");
new PushButton("buttonText");
Comment 1 Mickael Istria CLA 2014-02-21 10:37:56 EST
@Rastislav: isn't this issue already fixed?