After converting my model from Java to JavaScript using GWT 2.7, I have a set of properties with getValue() and setValue() methods that are not obfuscated.
I am interested in using these properties in {{}} expressions, especially for data binding with ngModel. I have implemented the "getterSetter" option and created a function in the $scope that encapsulates the getValue()/setValue() methods within an AngularJS getterSetter function.
My concern is avoiding redundancy by not having to replicate this function in every scope. Is there a way to access a global function within an AngularJS expression?