1

i am new to GWT MVP.I have read MVP documentation provided on Google site and also searched on other sites. But i am getting confused with MVP ,activities and gin .Can u please suggest me some good sites which have provided good explanation on it with complete example. Thanks in advance.

Rohan
  • 3,068
  • 1
  • 20
  • 26

2 Answers2

2

I have a simple example of using GIN with Activities and MVP, in the form of a Maven archetype (but the code should be simple enough that you can read it without using Maven / the archetype) at: https://github.com/tbroyer/gwt-maven-archetypes/tree/master/guice-rf-activities/src/main/resources/archetype-resources/__rootArtifactId__-client/src/main/java

Thomas Broyer
  • 64,353
  • 7
  • 91
  • 164
-1

GIN is a mainly a GWT-based version of the Google’s homegrown dependency injection framework GUICE.

But because the GWT applications run on top of the browser JavaScript engine instead of on the JVM, some of the GUICE features are not available in GIN.

You can find the clear explanation HERE

The official GWT website itself documented the GIN Tutorial

The below link will redirect you to the Getting Started tutorialto the GIN

http://code.google.com/p/google-gin/wiki/GinTutorial

And you can find the sample code related to the same example in the below link

http://code.google.com/p/google-gin/source/browse/#svn%2Ftags%2F2.0.0%2Fsamples

Suresh Atta
  • 120,458
  • 37
  • 198
  • 307
  • I don't think this answer effectively answers the question. I understand GIN quite well. Activities and Places with GIN is really hard to get the grips with. Like the answer better. – rjdkolb Nov 07 '14 at 07:59