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

Side by Side Diff: frontend/client/src/autotest/common/ui/SimplifiedList.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
1 // Copyright 2009 Google Inc. All Rights Reserved. 1 // Copyright 2009 Google Inc. All Rights Reserved.
2 2
3 package autotest.common.ui; 3 package autotest.common.ui;
4 4
5 import com.google.gwt.event.dom.client.ChangeHandler; 5 import com.google.gwt.event.dom.client.ChangeHandler;
6 import com.google.gwt.event.shared.HandlerRegistration; 6 import com.google.gwt.event.shared.HandlerRegistration;
7 7
8 public interface SimplifiedList { 8 public interface SimplifiedList {
9 public void clear(); 9 public void clear();
10 public void addItem(String name, String value); 10 public void addItem(String name, String value);
11 public String getSelectedName(); 11 public String getSelectedName();
12 public void selectByName(String name); 12 public void selectByName(String name);
13 public HandlerRegistration addChangeHandler(ChangeHandler handler); 13 public HandlerRegistration addChangeHandler(ChangeHandler handler);
14 public void setEnabled(boolean enabled);
14 } 15 }
OLDNEW
« no previous file with comments | « frontend/client/src/autotest/common/ui/RadioChooserDisplay.java ('k') | frontend/tko/rpc_interface.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698