use of org.eclipse.reddeer.swt.impl.button.RadioButton 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.button.RadioButton in project linuxtools by eclipse.
the class ImageRunResourceVolumesVariablesPage method addDataVolumeNoExternalMount.
public void addDataVolumeNoExternalMount(String containerPath) {
new PushButton(0, new WithTextMatcher("Add...")).click();
new LabeledText("Container path:").setText(containerPath);
new RadioButton("No external mount").click();
new OkButton().click();
}
use of org.eclipse.reddeer.swt.impl.button.RadioButton in project linuxtools by eclipse.
the class ImageRunResourceVolumesVariablesPage method addDataVolumeToHost.
public void addDataVolumeToHost(String containerPath, String path, boolean readOnly) {
new PushButton(0, new WithTextMatcher("Add...")).click();
new LabeledText("Container path:").setText(containerPath);
new RadioButton("Mount a host directory or host file").click();
new LabeledText("Path:").setText(path);
new CheckBox("Read-only access").toggle(readOnly);
;
new OkButton().click();
}
use of org.eclipse.reddeer.swt.impl.button.RadioButton in project linuxtools by eclipse.
the class NewDockerConnectionPage method setTcpUri.
public void setTcpUri(String uri) {
setConnectionName(uri);
new CheckBox("Use custom connection settings:").toggle(true);
new LabeledText("Location:").setText("");
new RadioButton("TCP Connection").toggle(true);
new LabeledText("URI:").setText(uri);
}
use of org.eclipse.reddeer.swt.impl.button.RadioButton in project linuxtools by eclipse.
the class RunDockerImageLaunchConfiguration method addDataVolumeNoExternalMount.
public void addDataVolumeNoExternalMount(String containerPath) {
selectTab(VOLUMES_TAB_LABEL);
new PushButton("Add..").click();
new LabeledText("Container path:").setText(containerPath);
new RadioButton("No external mount").click();
new OkButton().click();
}
Aggregations