And what if i want to use a package both on the client and server
side, but one of the classes has imports from app engine witch cannot
be used in GWT. Can i instruct the compiler (let's say in the .gwt.xml
file) to exclude a class from a package when compiling ?

On Jul 29, 6:18 pm, Nuno <[email protected]> wrote:
> Also, if you class is just a pojo you dont really need to create it in two
> places...
> the server code can access all of your client code.
> You just need to make the classes you want to transport from client to
> server or vice versa.
>
> In your example Contact may stay in the client package, and if you need to
> send a Contact object to the server, or make the server
> send it to you, just make this class Serializable.
>
>
>
> On Wed, Jul 29, 2009 at 12:10 PM, Paul Robinson <[email protected]> wrote:
>
> > You want this in your gwt.xml file:
> >    <source path="client"/>
> >    <source path="shared"/>
>
> > Note that if any <source...> element appears in your gwt.xml, then the
> > implied client source path is not added for you - so you will need both
> > of the above.
>
> > Paul
>
> > Ice13ill wrote:
> > > Hello,
> > > I'm trying to use a class (let's say Contact) on both client and
> > > server sides (packages: com.app.client and com.app.server). For that
> > > purpose I created a shared package (com.app.shared) in which to put
> > > the Contact class. But gwt (client side) only "sees" classes in
> > > com.app.client package. How can I use the Contact class on client side
> > > for the com.app.shared package? Do I have to add a <inherits> tag in
> > > my .gwt.xml file ?
> > > Thanks.
>
> --
> Quer aprender a programar? acompanhe:
> Wants to learn GWT? Follow this blog ->
>
> http://tcninja.blogspot.com
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to