use of org.eclipse.reddeer.swt.impl.button.RadioButton in project linuxtools by eclipse.
the class RunDockerImageLaunchConfiguration method addDataVolumeToContainer.
public void addDataVolumeToContainer(String containerPath, String containerName) {
selectTab(VOLUMES_TAB_LABEL);
new PushButton("Add...").click();
new LabeledText("Container path:").setText(containerPath);
new RadioButton("Mount a data volume container").click();
new DefaultCombo("Container").setText(containerName);
new OkButton().click();
}
use of org.eclipse.reddeer.swt.impl.button.RadioButton in project linuxtools by eclipse.
the class RunDockerImageLaunchConfiguration method setLow.
public void setLow() {
setEnableResourceLimitations(true);
new RadioButton("Low").click();
}
use of org.eclipse.reddeer.swt.impl.button.RadioButton in project linuxtools by eclipse.
the class RunDockerImageLaunchConfiguration method setMedium.
public void setMedium() {
setEnableResourceLimitations(true);
new RadioButton("Medium").click();
}
use of org.eclipse.reddeer.swt.impl.button.RadioButton in project linuxtools by eclipse.
the class RunDockerImageLaunchConfiguration method setHigh.
// resources tab
public void setHigh() {
setEnableResourceLimitations(true);
new RadioButton("High").click();
}
use of org.eclipse.reddeer.swt.impl.button.RadioButton in project jbosstools-hibernate by jbosstools.
the class EditConfigurationMainPage method setType.
public void setType(String type) {
DefaultGroup g = new DefaultGroup("Type:");
new RadioButton(g, type).click();
}
Aggregations