Google Plugin for Eclipse 2.4.0 introduces a wizard to publish your
application to Google Apps Marketplace.
SDK: http://code.google.com/p/google-web-toolkit/downloads/list
Eclipse update sites: http://code.google.com/eclipse/beta/docs/download.html
gwt-2.4.0-rc1 will appear in Maven Central shortly. Docs, Javadocs,
and release notes will be published with the final release.
--
David Chandler
Developer Programs Engineer, GWT+GAE
w: http://code.google.com/
b: http://turbomanage.wordpress.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools
package com.google.gwt.core.linkerinstead of
package com.google.gwt.sample.core.linker
Google Plugin for Eclipse 2.4.0 introduces a wizard to publish your
application to Google Apps Marketplace.
--To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/-k8sW-9vdboJ.
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-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
I've read through the documentation on Polymorphism support in
RequestFactory, and am finding it difficult to see the big picture
based on what is written. This is what I hope it means: I have a
domain class Shape, and subclasses Circle and Square, along with their
corresponding proxies ShapeProxy, CircleProxy and SquareProxy.
I am then able to write a service method that returns a list of
ShapeProxy objects; which can either be instances of CircleProxy or
SquareProxy (and perhaps ShapeProxy if it is non abstract).
Am I understanding the intent correctly?
If so, I assume ShapeProxy
extends EntityProxy, and the other proxy interfaces then extend
ShapeProxy, right?
Thanks for clarifying for me,