final Function1<Project,Boolean> _function = new Function1<Project,Boolean>() {
public Boolean apply(final Project e) {
return Boolean.valueOf((e instanceof FeatureProject));
}
};
Project _findFirst = IterableExtensions.<Project>findFirst(_projects, _function);
final FeatureProject plugin = ((FeatureProject) _findFirst);
EList<Project> _projects_1 = robotTask.getProjects();
final Function1<Project,Boolean> _function_1 = new Function1<Project,Boolean>() {
public Boolean apply(final Project e) {
return Boolean.valueOf((e instanceof BundleProject));
}
};
Project _findFirst_1 = IterableExtensions.<Project>findFirst(_projects_1, _function_1);
final BundleProject bundleProject = ((BundleProject) _findFirst_1);
ManifestFile _manifest = bundleProject.getManifest();
final String symbolicName = _manifest.getSymbolicname();
JemmyLaunchDef _jemmyLaunchDef = new JemmyLaunchDef();
final JemmyLaunchDef launchDef = _jemmyLaunchDef;