Re: Help! My Generators don't work for Web Mode :(

2009-03-31 Thread Marcelo Emanoel B. Diniz
Hi Sumit, The GWT.getTypeName() has been deprecated in favor of getClass().getName(). I was thinking about... the mechanism of binding that I implemented is based on annotations... based on what I know the annotations are stripped out by the compiler... is it possible that the compiler remove them

Re: Help! My Generators don't work for Web Mode :(

2009-03-30 Thread Sumit Chandel
Hi Marcelo, Something just struck me. What happens if you use GWT.getTypeName(binded) instead of label.setText(binded.getClass().getName())? Hope that helps, -Sumit Chandel On Thu, Mar 26, 2009 at 6:42 PM, Marcelo Emanoel B. Diniz marceloeman...@gmail.com wrote: Hi Sumit here are the

Re: Help! My Generators don't work for Web Mode :(

2009-03-26 Thread Marcelo Emanoel B. Diniz
Hi Sumit here are the generator rule and the generator class: rule: generate-with class=br.com.gwt.symbiosis.rebind.generator.BoundModelGenerator when-type-assignable class=br.com.gwt.symbiosis.client.bind.BindingModel / /generate-with generate-with

Re: Help! My Generators don't work for Web Mode :(

2009-03-24 Thread Sumit Chandel
Hi Marcelo, It might help to post up the generator rule and especially the generate() implementation that is being used to generate the FormView generated type. My thought is that whatever is going on in there is depending on rules that might not hold true in web mode. Cheers, -Sumit Chandel On

Help! My Generators don't work for Web Mode :(

2009-03-19 Thread Marcelo Emanoel
Hi guys I have a problem with generators... I've manage to do 2 generators and they work fine on hosted mode however they don't work when I compile code to web mode :( What I'm trying to acomplish is to build an API for binding... An important thing is that my generators work on hosted mode

Re: Help! My Generators don't work for Web Mode :(

2009-03-19 Thread Marcelo Emanoel B. Diniz
this is my entry point package br.com.gwt.symbiosis.client; import br.com.gwt.symbiosis.client.mock.FormView; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.ui.Label; import com.google.gwt.user.client.ui.RootPanel; public