1

Where gwt-dispatcher classes (Action, Result, Handler) should be kept? I mean it should be all in client package or maybe shared or any other combination? How do You handle this?

jjczopek
  • 3,319
  • 2
  • 32
  • 72

1 Answers1

3

I wrote a small app called SixFixMix and in there, here's what I do:

  • Action/Result classes are kept in a ...shared.rpc package
  • Handler classes are kept in a ...server.handler package
Eric Landry
  • 638
  • 1
  • 9
  • 22