0

I'm using RoboBinding in my project. In some place in class ContactsActivityViewModel I call firePropertyChange('Contacts') and get an exception:

java.lang.IllegalArgumentException: No such property 'com.psksoft.watchphone.viewmodels.ContactsActivityViewModel.Contacts'

But the ContactsActivityViewModel class has getContacts() and setContacts(). It looks like a ViewAlbumsPresentationModel class from the RoboBinding Album Sample.

The whole source of my ContactsActivityViewModel class is available at

http://pastebin.com/raLWt6XV

The exception occurs at line 153. Anybody knows what is happening? Thanks in advance!

Akeshwar Jha
  • 4,516
  • 8
  • 52
  • 91
Alexandr
  • 695
  • 2
  • 9
  • 18

1 Answers1

1

Try with the property name all in lowercase

_ChangeNotify.firePropertyChange("contacts");
diedu
  • 19,277
  • 4
  • 32
  • 49