my problem is about my GWT project.
i got 2 files named Main.java(EntryPoint) and Registration.java(Composite) in my client package. Registration class is just user interface for registration.(it has text boxes and button)
There is a register button in Registration class which takes all information from registration form. My problem is here. how can i send this information from Registration class to EntryPoint class when user clicks button?
this is my onModuleLoad method;
….
Registration registration = new Registration();
dockLayoutPanel.add(registration);
….
Use Command Pattern, for example I also have an Interface
and in your Registration class add save handler:
}
So here is what to do in your EntryPoint