Hello,
I have an object

public class SMSMessage  {

        public String id;
        public String body;
        public Boolean store;
        public int folder;
        public Boolean read;
        public String recipient;

//Methods

public String getProperty(String propertyName)
{....}

}

when I call from java script (after to enable the new javascript
interface):

mysms.getProperty("body");

I get the body value however, when I call

var mybody=mysms.body;

I don't get any value. How can I implement this to get property values
using
[object].[property] way and not with [object].getProperty
([propertyName])?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to