Question for experts: Pluggable gwt module CompileModule class XXXX.gwtar file.

2011-11-11 Thread KD
OK this one is for GWT experts!! I have a GWT app that has widgets. We are shipping 5 widgets out of the box. The widgets also depend on our API which act as simple DAO pojos Now when this gets outs to customers. They have a requirement where they want to create their own widgets

Re: Does the GWT magic ever fail you?

2011-11-11 Thread KD
In my experience, debugging has been OK as long as you are savvy with dev mode. We also have our own exceptions and use GWT logger extensively. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT Dashboard Development

2011-11-11 Thread KD
Do you still need help with this? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/VtyKgLySv3sJ. To post to this group, send email to

Re: GWT + Javascript Libraries

2011-07-25 Thread KD
-browser OK. -KD On Jul 23, 11:43 am, Tom Carchrae carch...@gmail.com wrote: Hi All, I get the impression (and please correct me if I'm wrong) that most GWT developers live in a pure Java (compiled in JS) world.  Am I wrong?  Do you mix GWT with other Javascript libraries (eg.http

how to best use MVP in this case?

2011-05-23 Thread KD
://code.google.com/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndP... but is that the best design pattern in this case? thanks in advance... -KD -- 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

what would be the best design pattern in this case?

2011-05-20 Thread KD
://code.google.com/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html#How_to_navigate but is that the best design pattern in this case? thanks in advance... -KD -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group

Re: How to learn use GWT

2011-05-20 Thread KD
Mucking around with the examples will make you very confident. Just check out the samples code and add your own lego blocks. Still you need some helps from books and tutorials in terms of design patterns. -KD On May 20, 12:21 pm, Alisson Prestes javalis...@gmail.com wrote: I highly recommend

where to place my own google emulated classes?

2011-03-22 Thread KD
This is my current setup src/ com acme Model.gwt.xml model token Token.java ...

where to place my own jre and google emulated classes?

2011-03-22 Thread KD
This is my current setup... src/ com acme Model.gwt.xml model token Token.java ... test/ super com acme jre java lang CloneNotSupportedException.java (introducing class since GWT doesnt support it) google gwt emul java lang Character.java (added a method that GWT doesn't support) the super

Re: How to compile selectively or avoid compilation of inheriting/implementing classes?

2011-03-22 Thread KD
? On Mar 16, 3:59 pm, Chris Conroy con...@google.com wrote: GWT speculatively parses anything you put on the source path. If you don't want something to be included in your module, you need to explicitly say so in your .gwt.xml. On Wed, Mar 16, 2011 at 3:35 PM, KD kanwald...@gmail.com

Re: gwt linear gauge

2011-03-22 Thread KD
if you can use flex, then fusion charts offers it http://www.fusioncharts.com/widgets/gallery.asp -- 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

how and where to starting customizing GWT compiler?

2011-03-18 Thread KD
GWT is not doing a great job in figuring out which classes will actually need to be serialized and scoops them all. exclude tag in gwt.xml will not work extend-configuration-property name=rpc.blacklist value=com.mypackage Reorganize/Refactoring my code is not an option for now. So my last

Re: Is there a way to workaround GWT compiler/serializer/linker issue?

2011-03-18 Thread KD
to get FooImpl2 as well which just an implementation of AbstractFoo. I never asked it to look for anything in Proj-Other2. -KD Andreas Horst wrote: Do you use that abstract base class as a RPC parameter? If so, *of course*GWT has to look for and try to compile all sub classes and implementations

GWT compiler/serializer/linker issue?

2011-03-16 Thread KD
Lets say I have a class com.mycom.app.AbstractMessage There is another class in com.mycom.model.QueryResponse QueryResponse extends AbstractMessage and notice they are in different pacakges com.mycom.model is a GWT Module and in the module XML When I compile model there are errors. However

Re: How to compile selectively or avoid compilation of inheriting/implementing classes?

2011-03-16 Thread KD
to stop it? -KD On Mar 16, 1:17 am, A. Stevko andy.ste...@gmail.com wrote: It does not seem likely that the GWT compiler is bringing in any classes that are not in the source paths. I suggest looking at the imports within those directories to see which are referencing thoughworks etc

Is there a way to workaround GWT compiler/serializer/linker issue?

2011-03-16 Thread KD
Lets say I have package : com.mycom.model It has following classes com.mycom.model.PlatformMessage (an interface) com.mycom.model.AbstractMessage (an abstract class that implements PlatformMessage) com.mycom.model.QueryMessage (a concrete implementation of AbstractMessage) Now there is

How to compile selectively or avoid compilation of inheriting/implementing classes?

2011-03-15 Thread KD
Here is my situation. On the top level of my API is... com.mycompany.core.MODEL I have made this a GWT module, has a blank entry point and has MyModel.xml. Its structure is as below... module inherits name='com.google.gwt.user.User'/ super-source path=jre/ source path='client'/ source

Re: Older version of GWT Eclipse plugin

2011-03-15 Thread KD
reference versioned gwt jars in your project, then you better mavenize it if possible and change dependency as need be best KD On Mar 15, 9:21 am, Michiel Weggen michiel.weg...@gmail.com wrote: I'm currently working on a piece of software that's still using GWT 2.0.4, and is not (yet) compatible

How to integrate or call or interface with a 3rd party widget within a GWT app?

2011-02-18 Thread KD
I am making an app in GWT. It is like a dashboard and will have out of the box widgets that I will provide. Now when we ship this out, there is a use case that the customer might want to create their own GWT widget and use this in the dashboard app. As I understand it, they will not be able to

Re: How to integrate or call or interface with a 3rd party widget within a GWT app?

2011-02-18 Thread KD
thanks salk31 -- 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