tags:

views:

97

answers:

1

I realize that GWt doesn't compile the classes not in the Client package. But what is the importance of the shared package? What are the classes that I need to put in this package?

+4  A: 

What are the classes that I need to put in this package?

Any logic or data types that are used by both the client and the server. This will save you from duplicating code across both sides, and potentially keep the logic and data types consistent.

Bakkal
Yep, just as the man says.
Spedge