JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / bin / awt2swing / Choice.js
1 Clazz.declarePackage ("awt2swing");
2 Clazz.load (["javax.swing.JComboBox"], "awt2swing.Choice", null, function () {
3 c$ = Clazz.declareType (awt2swing, "Choice", javax.swing.JComboBox);
4 Clazz.defineMethod (c$, "select", 
5 function (key) {
6 this.setSelectedItem (key);
7 }, "~O");
8 });