Re: Google Collections with GWT?

2009-05-12 Thread sullymandias

Thanks! Yeah, I've abandoned trying to use google collections on the
gwt client. Seems a bit of a shame and I hope they add support for
that!

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Google Collections with GWT?

2009-05-12 Thread Rakesh

it would be interesting to have google collections work in gwt!


On May 8, 7:46 am, sullymandias sullymand...@gmail.com wrote:
 Are Google Collections passable over GWT-RPC? I've been trying to get
 this to work for a few hours now with no luck. I'm using GWT 1.6.4. I
 managed to get Maven to download the source for google collections 1.0-
 rc1, and get it in my classpath for the GWT Compiler, but the compiler
 is not succeeding in processing that source. I get the following
 error:

      [java]             [ERROR] Errors in 'jar:file:/home/sullivan/
 NetBeansProjects/rnateam/war/WEB-INF/lib/google-collections-1.0-rc1-
 sources.jar!/com/google/common/collect/TreeMultimap.java'
      [java]                [ERROR] Line 32: The import
 javax.annotation.Nullable cannot be resolved
      [java]                [ERROR] Line 135: Nullable cannot be
 resolved to a type
      [java]                [ERROR] Line 136: Nullable cannot be
 resolved to a type
      [java]                [ERROR] Line 179: Nullable cannot be
 resolved to a type
      [java]                [ERROR] Line 180: Nullable cannot be
 resolved to a type

 I went and added the jar and source-jar for javax.annotation:jsr250-
 api:1.0 and got it in the classpath for the GWT Compiler, but no luck.
 As it turns out, there is no javax.annotation.Nullable in the jsr250-
 api.jar

 Any suggestions?

 Thanks, John
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Google Collections with GWT?

2009-05-12 Thread Rakesh

FYI:
http://groups.google.com/group/google-collections-users/browse_thread/thread/b0873c9e59050ed3/a3915e9e3db8314a?lnk=gstq=gwt#a3915e9e3db8314a

On May 12, 11:57 am, Rakesh rake...@gmail.com wrote:
 it would be interesting to have google collections work in gwt!

 On May 8, 7:46 am, sullymandias sullymand...@gmail.com wrote:

  Are Google Collections passable over GWT-RPC? I've been trying to get
  this to work for a few hours now with no luck. I'm using GWT 1.6.4. I
  managed to get Maven to download the source for google collections 1.0-
  rc1, and get it in my classpath for the GWT Compiler, but the compiler
  is not succeeding in processing that source. I get the following
  error:

       [java]             [ERROR] Errors in 'jar:file:/home/sullivan/
  NetBeansProjects/rnateam/war/WEB-INF/lib/google-collections-1.0-rc1-
  sources.jar!/com/google/common/collect/TreeMultimap.java'
       [java]                [ERROR] Line 32: The import
  javax.annotation.Nullable cannot be resolved
       [java]                [ERROR] Line 135: Nullable cannot be
  resolved to a type
       [java]                [ERROR] Line 136: Nullable cannot be
  resolved to a type
       [java]                [ERROR] Line 179: Nullable cannot be
  resolved to a type
       [java]                [ERROR] Line 180: Nullable cannot be
  resolved to a type

  I went and added the jar and source-jar for javax.annotation:jsr250-
  api:1.0 and got it in the classpath for the GWT Compiler, but no luck.
  As it turns out, there is no javax.annotation.Nullable in the jsr250-
  api.jar

  Any suggestions?

  Thanks, John
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Google Collections with GWT?

2009-05-10 Thread zame...@gmail.com

hello,

I had the same problem. I need to use transform object, which is a
simple design pattern in J2ee. It is a simple bean set for each
persistent bean object, without annotations and extra fields. It is a
commonly used persistence jar for ejb and gwt too.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Google Collections with GWT?

2009-05-08 Thread sullymandias

Are Google Collections passable over GWT-RPC? I've been trying to get
this to work for a few hours now with no luck. I'm using GWT 1.6.4. I
managed to get Maven to download the source for google collections 1.0-
rc1, and get it in my classpath for the GWT Compiler, but the compiler
is not succeeding in processing that source. I get the following
error:

 [java] [ERROR] Errors in 'jar:file:/home/sullivan/
NetBeansProjects/rnateam/war/WEB-INF/lib/google-collections-1.0-rc1-
sources.jar!/com/google/common/collect/TreeMultimap.java'
 [java][ERROR] Line 32: The import
javax.annotation.Nullable cannot be resolved
 [java][ERROR] Line 135: Nullable cannot be
resolved to a type
 [java][ERROR] Line 136: Nullable cannot be
resolved to a type
 [java][ERROR] Line 179: Nullable cannot be
resolved to a type
 [java][ERROR] Line 180: Nullable cannot be
resolved to a type

I went and added the jar and source-jar for javax.annotation:jsr250-
api:1.0 and got it in the classpath for the GWT Compiler, but no luck.
As it turns out, there is no javax.annotation.Nullable in the jsr250-
api.jar

Any suggestions?

Thanks, John

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---