use of org.eclipse.reddeer.swt.impl.combo.LabeledCombo in project linuxtools by eclipse.
the class ImageRunNetworkPage method setContainerNetworkMode.
public void setContainerNetworkMode(String containerName) {
new RadioButton("Container:").click();
new LabeledCombo("").setText(containerName);
}
use of org.eclipse.reddeer.swt.impl.combo.LabeledCombo in project linuxtools by eclipse.
the class RunDockerImageLaunchConfiguration method selectImage.
public void selectImage(String imageName) {
selectTab(MAIN_TAB_LABEL);
new LabeledCombo("Image:").setSelection(imageName);
}
use of org.eclipse.reddeer.swt.impl.combo.LabeledCombo in project linuxtools by eclipse.
the class RunDockerImageLaunchConfiguration method selectConnection.
// Main tab
public void selectConnection(String connectionName) {
selectTab(MAIN_TAB_LABEL);
new LabeledCombo("Connection:").setSelection(connectionName);
}
use of org.eclipse.reddeer.swt.impl.combo.LabeledCombo in project jbosstools-hibernate by jbosstools.
the class GenerateDdlWizardPage method setHibernateVersion.
/**
* Set Hibernate Version for table/ddl generation
* @param hbVersion hibernate version
*/
public void setHibernateVersion(String hbVersion) {
LabeledCombo lc = new LabeledCombo(referencedComposite, "Hibernate Version:");
lc.setSelection(hbVersion);
}
use of org.eclipse.reddeer.swt.impl.combo.LabeledCombo in project jbosstools-hibernate by jbosstools.
the class ProjectConfigurationFactory method addFurtherJPAConfiguration.
private static void addFurtherJPAConfiguration(String jpaVersion, boolean addedJavaFacet) {
DefaultHyperlink hyperlink = new DefaultHyperlink();
hyperlink.activate();
Shell s = new DefaultShell("Modify Faceted Project");
if (addedJavaFacet) {
new NextButton().click();
}
DefaultGroup group = new DefaultGroup("Platform");
new DefaultCombo(group).setSelection("Hibernate (JPA " + jpaVersion + ")");
new LabeledCombo("Type:").setSelection("Disable Library Configuration");
new OkButton().click();
new WaitWhile(new ShellIsAvailable(s));
}
Aggregations