Search in sources :

Example 6 with RadioButton

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();
}
Also used : OkButton(org.eclipse.reddeer.swt.impl.button.OkButton) DefaultCombo(org.eclipse.reddeer.swt.impl.combo.DefaultCombo) LabeledText(org.eclipse.reddeer.swt.impl.text.LabeledText) RadioButton(org.eclipse.reddeer.swt.impl.button.RadioButton) PushButton(org.eclipse.reddeer.swt.impl.button.PushButton)

Example 7 with RadioButton

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();
}
Also used : RadioButton(org.eclipse.reddeer.swt.impl.button.RadioButton)

Example 8 with RadioButton

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();
}
Also used : RadioButton(org.eclipse.reddeer.swt.impl.button.RadioButton)

Example 9 with RadioButton

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();
}
Also used : RadioButton(org.eclipse.reddeer.swt.impl.button.RadioButton)

Example 10 with RadioButton

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();
}
Also used : DefaultGroup(org.eclipse.reddeer.swt.impl.group.DefaultGroup) RadioButton(org.eclipse.reddeer.swt.impl.button.RadioButton)

Aggregations

RadioButton (org.eclipse.reddeer.swt.impl.button.RadioButton)15 LabeledText (org.eclipse.reddeer.swt.impl.text.LabeledText)9 PushButton (org.eclipse.reddeer.swt.impl.button.PushButton)7 OkButton (org.eclipse.reddeer.swt.impl.button.OkButton)6 CheckBox (org.eclipse.reddeer.swt.impl.button.CheckBox)5 WithTextMatcher (org.eclipse.reddeer.core.matcher.WithTextMatcher)3 DefaultCombo (org.eclipse.reddeer.swt.impl.combo.DefaultCombo)2 LabeledCombo (org.eclipse.reddeer.swt.impl.combo.LabeledCombo)1 DefaultGroup (org.eclipse.reddeer.swt.impl.group.DefaultGroup)1 WorkbenchPreferenceDialog (org.eclipse.reddeer.workbench.ui.dialogs.WorkbenchPreferenceDialog)1