Re: GWT/GPE 2.4.0 RC1 is available

2011-07-31 Thread Lars Huber
Will it be possible to use @Category on Proxies? Is there a way to
realize additional logic for RF proxies, with @Category or another
way? Currently I super sourced some RF core classes and replaced the
generator. I'am able to use @Category as described in AutoBeans. But
this means a lot of merging work on new releases. Did I miss something
with RF too implement additional logic in RF? It wouldn't be that much
work to enable @Category for proxies in a proper manner.

Another thing are all the private methods in RF / AutoBean generators
and in Service Layer logic on server side. These private methods
forces us to copy/paste a lot of code whenever we want to extend some
logic. What's the reason for this private restriction? Why not
protected?

-- 
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.



How to add @Category on RequestFactory Proxies

2011-05-19 Thread Lars Huber
I need to add additional logic on Proxies. How can I add the @Category
functionality on Entity and Value Proxies? Is this possible? If not,
is it planned?

-- 
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.



Category annotation (as for AutoBean) for RequestFactory Proxies

2011-04-28 Thread Lars Huber
I don't know if it is planned or not. I couldn't find an issue
targeting the feature to annotate a Proxy interface with a @Category
annotation.
Currently we have to call static method in other classes instead of
invoking the interface methods to have some additional logic.

Can anyone tell me if it is planned or not. If yes, for 2.3?

-- 
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: RequestFactory EntityProxy and AutoBean category

2011-03-24 Thread Lars Huber
I believe I read about it. Actually it's not available but it is
planned. Is this right? If yes, for when?

-- 
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: RequestFactory custom encoder/decoder

2011-02-22 Thread Lars Huber
Please give me a hint how to override java.util.Date JSON encoding/
decoding for RequestFactory

-- 
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: RequestFactory custom encoder/decoder

2011-02-20 Thread Lars Huber
Unfortunately you can't rely on the clients time and locale settings.
For dates independently of timezone and summer/winter time best works
to submit a date as a string. This way you receive always exactly the
same printing date (not timestamp). any hints for custom encoding/
decoding?

-- 
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.



RequestFactory custom encoder/decoder

2011-02-18 Thread Lars Huber
How can I implement custom encoding/decoding for RequestFactory calls
similar to CustomFieldSerializer in RPC? In concrete I want to
override the java.util.Date encoding/decoding . I want to submit a
date as "-MM-dd HH:mm:ss.SSS". Any ideas?

-- 
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.