Binding read-only accessors in Flex
When I first tried to bind a read-only getter-function (see example-code below) the Flex SDK decided to warn me that “[Bindable] on read-only getter is unnecessary and will be ignored.”.
private var _someProperty:String = "some value";
[Bindable]
public function get someProperty ():String {
return _someProperty;
}
// generates compile-time warning saying "[Bindable] on read-only getter is unnecessary and [...]