From 8bd9aacc73ce893c81ae41151116a1845150292c Mon Sep 17 00:00:00 2001 From: Bruno Garcia Date: Sat, 13 Dec 2008 00:33:50 +0000 Subject: [PATCH] Terminologies. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@741 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flex/CommandComboBox.as | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/as/com/threerings/flex/CommandComboBox.as b/src/as/com/threerings/flex/CommandComboBox.as index 6bca0422..1aea191e 100644 --- a/src/as/com/threerings/flex/CommandComboBox.as +++ b/src/as/com/threerings/flex/CommandComboBox.as @@ -36,10 +36,10 @@ import com.threerings.util.CommandEvent; public class CommandComboBox extends ComboBox { /** - * The attribute of the selectedItem object that used as the argument to the + * The field of the selectedItem object used as the argument to the * command or function. If null, the entire selectedItem is passed as the argument. */ - public var argName :String; + public var argField :String; /** * Create a command combobox. @@ -47,11 +47,11 @@ public class CommandComboBox extends ComboBox * @param cmdOrFn either a String, which will be the CommandEvent command to dispatch, * or a function, which will be called when changed. */ - public function CommandComboBox (cmdOrFn :* = null, argName :String = "data") + public function CommandComboBox (cmdOrFn :* = null, argField :String = "data") { CommandButton.validateCmd(cmdOrFn); _cmdOrFn = cmdOrFn; - this.argName = argName; + this.argField = argField; addEventListener(ListEvent.CHANGE, handleChange); } @@ -73,14 +73,14 @@ public class CommandComboBox extends ComboBox } /** - * Handy function to lookup an option based by argName and set it as the selected item. + * Handy function to lookup an option based on argField and set it as the selected item. * This probably only works for Array dataProviders. */ public function setSelectedValue (value :Object) :void { for (var ii :int = 0; ii < dataProvider.length; ++ii) { - var v :Object = (this.argName != null) ? - dataProvider[ii][this.argName] : dataProvider[ii]; + var v :Object = (this.argField != null) ? + dataProvider[ii][this.argField] : dataProvider[ii]; if (v == value) { this.selectedIndex = ii; return; @@ -92,12 +92,12 @@ public class CommandComboBox extends ComboBox } /** - * The value that will be passed to the command or function based on argName and the + * The value that will be passed to the command or function based on argField and the * current selected item. */ public function getSelectedValue () :Object { - return (this.argName != null) ? this.selectedItem[this.argName] : this.selectedItem; + return (this.argField != null) ? this.selectedItem[this.argField] : this.selectedItem; } protected function handleChange (event :ListEvent) :void