Hello I would like to use reflexion on my gwt Application. I know with
GWT u can't use dynamic binding but deffering binding. So inteads of :
Class c = Class.forName("java.lang.String"); I use :
Class c = GWT.create(String.class);But can I do the same things than below in GWT? Method m[] = c.getDeclaredMethods(); --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
