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

2011-03-22 Thread KD
Hi Chris I tried setting explicitly... in my gwt.xml source path='model' include name=request/MyRequest.java / include name=document/MyDocument.java / exclude name=query/** / exclude name=schema/** / exclude name=token/** / exclude name=security/**

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

2011-03-16 Thread KD
Ok let me rephrase this. Say, there is an abstract class com.model.AbstractMessage and one of its implementation are in same package called com.model.ConcreteMessage. Now another class in another package also implements the com.model.AbstractMessage, lets call it com.api.ChangeMessage Now when I

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

2011-03-16 Thread Chris Conroy
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 wrote: Ok let me rephrase this. Say, there is an abstract class

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: How to compile selectively or avoid compilation of inheriting/implementing classes?

2011-03-15 Thread A. Stevko
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. On Tue, Mar 15, 2011 at 11:21 AM, KD kanwald...@gmail.com wrote: Here is my