Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: frontend/client/src/autotest/afe/IRadioButton.java

Issue 3554003: Merge remote branch 'cros/upstream' into tempbranch3 (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 package autotest.afe;
2
3 import com.google.gwt.user.client.ui.HasText;
4 import com.google.gwt.user.client.ui.HasValue;
5 import com.google.gwt.user.client.ui.RadioButton;
6
7 public interface IRadioButton extends HasValue<Boolean>, HasText {
8 public void setEnabled(boolean enabled);
9
10 public static class RadioButtonImpl extends RadioButton implements IRadioBut ton {
11 public RadioButtonImpl(String name) {
12 super(name);
13 }
14
15 public RadioButtonImpl(String name, String choice) {
16 super(name, choice);
17 }
18 }
19 }
OLDNEW
« no previous file with comments | « frontend/client/src/autotest/afe/ICheckBox.java ('k') | frontend/client/src/autotest/afe/ITextArea.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698