This is really major issue with me in GWT project , i am trying to
make one generic solution for the current scenario of my project in
which i required some help
here i am providing the code and the requirement related to same
Class A .... has one method namely
method A(Object anotherClassObject){
this line is commented because i am not able to get the method of
another class at runtime
System.out.println("passed class method"+
anotherClassObject.getName());
}
}
Class B... calls this method and pass the custom object say "Contact"
{
classAObject.methodA(Contact contactObject);
}
Now Contact.java say have properties or method like
Class Contact{
private String name;
public String getName(){
return "alexander";
}
I went through DefferdBinding , reflection but not able to find out
the right solution by which i can solve this issue
please provide me the solution ASAP
}
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" 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/google-web-toolkit?hl=en.