<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: GWT XDoclet</title>
	<atom:link href="http://braindump.dk/tech/gwt-xdoclet/feed/" rel="self" type="application/rss+xml" />
	<link>http://braindump.dk/tech</link>
	<description>Online and Working</description>
	<lastBuildDate>Wed, 08 Sep 2010 10:14:29 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tech Life of Recht &#187; Blog Archive &#187; GWT XDoclet replacement for GWT 1.5</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-25186</link>
		<dc:creator>Tech Life of Recht &#187; Blog Archive &#187; GWT XDoclet replacement for GWT 1.5</dc:creator>
		<pubDate>Wed, 05 Nov 2008 11:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-25186</guid>
		<description>[...] GWT XDoclet [...]</description>
		<content:encoded><![CDATA[<p>[...] GWT XDoclet [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francesco</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-11911</link>
		<dc:creator>Francesco</dc:creator>
		<pubDate>Tue, 11 Dec 2007 11:04:32 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-11911</guid>
		<description>Thank you for your prompt reply - and work :-)

There is still one problem.
The template adds angle brackets (&#039;less than&#039; &lt;code&gt;&lt;&lt;/code&gt; and &#039;more than&#039; &lt;code&gt;&gt;&lt;/code&gt;) to the full class names specified. 
This way it&#039;s not possible to specify typeArgs for inputs, see:

http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.RemoteProcedureCalls.html#SerializableTypes

A solution (which I did now) could be to remove brackets from the template (by the way it is does not seem possible to change it for ant tasks) and leave them in the source code.
But also consider that typeArgs clauses can be more than one:
&lt;code&gt;
/**
	 * @gwt.serviceMethod
	 * 
	 * @gwt.typeArgs 
	 * @gwt.typeArgs apples 
	 * @gwt.typeArgs lemons 
	 */
	public List doSomething(List apples, List lemons) {
		createCakes(apples, lemons);
	}
&lt;/code&gt;

There I think you need to iterate through the list of typeArgs but don&#039;t know how to do it with XDT.
Thank you for your time.</description>
		<content:encoded><![CDATA[<p>Thank you for your prompt reply &#8211; and work <img src='http://braindump.dk/tech/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>There is still one problem.<br />
The template adds angle brackets (&#8217;less than&#8217; <code>&lt;</code> and &#8216;more than&#8217; <code>&gt;</code>) to the full class names specified.<br />
This way it&#8217;s not possible to specify typeArgs for inputs, see:</p>
<p><a href="http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.RemoteProcedureCalls.html#SerializableTypes" rel="nofollow">http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.RemoteProcedureCalls.html#SerializableTypes</a></p>
<p>A solution (which I did now) could be to remove brackets from the template (by the way it is does not seem possible to change it for ant tasks) and leave them in the source code.<br />
But also consider that typeArgs clauses can be more than one:<br />
<code><br />
/**<br />
	 * @gwt.serviceMethod<br />
	 *<br />
	 * @gwt.typeArgs<br />
	 * @gwt.typeArgs apples<br />
	 * @gwt.typeArgs lemons<br />
	 */<br />
	public List doSomething(List apples, List lemons) {<br />
		createCakes(apples, lemons);<br />
	}<br />
</code></p>
<p>There I think you need to iterate through the list of typeArgs but don&#8217;t know how to do it with XDT.<br />
Thank you for your time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: recht</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-11611</link>
		<dc:creator>recht</dc:creator>
		<pubDate>Tue, 04 Dec 2007 21:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-11611</guid>
		<description>I&#039;ve created a new version of the module which supports typeArgs. See http://braindump.dk/tech/2007/12/04/gwt-xdoclet-with-typeargs/</description>
		<content:encoded><![CDATA[<p>I&#8217;ve created a new version of the module which supports typeArgs. See <a href="http://braindump.dk/tech/2007/12/04/gwt-xdoclet-with-typeargs/" rel="nofollow">http://braindump.dk/tech/2007/12/04/gwt-xdoclet-with-typeargs/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francesco</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-11344</link>
		<dc:creator>Francesco</dc:creator>
		<pubDate>Wed, 28 Nov 2007 15:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-11344</guid>
		<description>Great job! 
But still we need to &quot;edit&quot; the outputs. In our case, the generated interface implementing RemoteService produced by  has to be tagged with @gwt.typeArgs 
Wouldn&#039;t be possible to copy these tags from the **Impl class?</description>
		<content:encoded><![CDATA[<p>Great job!<br />
But still we need to &#8220;edit&#8221; the outputs. In our case, the generated interface implementing RemoteService produced by  has to be tagged with @gwt.typeArgs<br />
Wouldn&#8217;t be possible to copy these tags from the **Impl class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jam</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-2031</link>
		<dc:creator>Jam</dc:creator>
		<pubDate>Wed, 07 Mar 2007 13:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-2031</guid>
		<description>Hi,
It&#039;s me again...

I&#039;ve got a problem with the generation of the factory and the system of the prefix (in 0.4 version). I try it.

Can you add this rules : 
is the prefix is not define, default base url is Gwt.getModuleBaseUrl();
if the prefix is define, use the prefix to the base url.

the same application in hosted mode and in a war deploy in an application server doesn&#039;t use the same base url. If you want to have the possibility to use the same application in this twice status, use GWT.getModuleBaseUrl() can be a solution...

I have implement this tule in the servicefactory.xdt and it works.

thanks

Jérémy</description>
		<content:encoded><![CDATA[<p>Hi,<br />
It&#8217;s me again&#8230;</p>
<p>I&#8217;ve got a problem with the generation of the factory and the system of the prefix (in 0.4 version). I try it.</p>
<p>Can you add this rules :<br />
is the prefix is not define, default base url is Gwt.getModuleBaseUrl();<br />
if the prefix is define, use the prefix to the base url.</p>
<p>the same application in hosted mode and in a war deploy in an application server doesn&#8217;t use the same base url. If you want to have the possibility to use the same application in this twice status, use GWT.getModuleBaseUrl() can be a solution&#8230;</p>
<p>I have implement this tule in the servicefactory.xdt and it works.</p>
<p>thanks</p>
<p>Jérémy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jam</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-2024</link>
		<dc:creator>Jam</dc:creator>
		<pubDate>Tue, 06 Mar 2007 16:13:08 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-2024</guid>
		<description>hi,

I&#039;ve got a new...new... request :-)

It&#039;s about the generation of the module.gwt.xml again. can you add the possibility to generate information like extend-porperty (for i18n)

you can see an exemple of what generate here :
http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.Internationalization.SpecifyingLocale.html

the caracteristics of the tag gwt.extend-property:
-name
-value

I made change in module.xdt. It works perfect...

Jérémy</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>I&#8217;ve got a new&#8230;new&#8230; request <img src='http://braindump.dk/tech/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>It&#8217;s about the generation of the module.gwt.xml again. can you add the possibility to generate information like extend-porperty (for i18n)</p>
<p>you can see an exemple of what generate here :<br />
<a href="http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.Internationalization.SpecifyingLocale.html" rel="nofollow">http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.Internationalization.SpecifyingLocale.html</a></p>
<p>the caracteristics of the tag gwt.extend-property:<br />
-name<br />
-value</p>
<p>I made change in module.xdt. It works perfect&#8230;</p>
<p>Jérémy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jam</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-1994</link>
		<dc:creator>Jam</dc:creator>
		<pubDate>Thu, 01 Mar 2007 11:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-1994</guid>
		<description>arffff the code don&#039;t appear in my previous post.

So, if you want to include the possibility to generate information related to the stylesheet,  you an modify the module.xdt. copy/paste the portion of code concerning the inerits tag and adapt them to generate the declaration of the stylsheet in the module...</description>
		<content:encoded><![CDATA[<p>arffff the code don&#8217;t appear in my previous post.</p>
<p>So, if you want to include the possibility to generate information related to the stylesheet,  you an modify the module.xdt. copy/paste the portion of code concerning the inerits tag and adapt them to generate the declaration of the stylsheet in the module&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jam</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-1993</link>
		<dc:creator>Jam</dc:creator>
		<pubDate>Thu, 01 Mar 2007 11:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-1993</guid>
		<description>Hi,

I&#039;ve got a new request...

with the version 0.3, it&#039;s impossible to generate in the module .gwt.xml information related to the stylesheet

You can add this code in the module.xdt in the jar :





	&quot;/&gt;



So, if youd had : 
@gwt.style src=&quot;YourCss.css&quot; in your java code 

It generate : 
 in your .gwt.xml</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;ve got a new request&#8230;</p>
<p>with the version 0.3, it&#8217;s impossible to generate in the module .gwt.xml information related to the stylesheet</p>
<p>You can add this code in the module.xdt in the jar :</p>
<p>	&#8220;/&gt;</p>
<p>So, if youd had :<br />
@gwt.style src=&#8221;YourCss.css&#8221; in your java code </p>
<p>It generate :<br />
 in your .gwt.xml</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Recloux</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-1966</link>
		<dc:creator>Thomas Recloux</dc:creator>
		<pubDate>Tue, 27 Feb 2007 17:34:55 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-1966</guid>
		<description>Hi,

Thanks for this great Job.

I had a problem with the ServiceFactory&#039;s prefix compute.

In hosted mode, everything is Ok, but in server  mode, it computes an URL of this form :
http://server/modulepath/../servicePath

When I use the path provided by &quot;GWT.getModuleBaseURL()&quot;, everything is OK in hosted and server mode.

Thanks, Thomas</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for this great Job.</p>
<p>I had a problem with the ServiceFactory&#8217;s prefix compute.</p>
<p>In hosted mode, everything is Ok, but in server  mode, it computes an URL of this form :<br />
<a href="http://server/modulepath/../servicePath" rel="nofollow">http://server/modulepath/../servicePath</a></p>
<p>When I use the path provided by &#8220;GWT.getModuleBaseURL()&#8221;, everything is OK in hosted and server mode.</p>
<p>Thanks, Thomas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jam</title>
		<link>http://braindump.dk/tech/gwt-xdoclet/comment-page-1/#comment-1962</link>
		<dc:creator>Jam</dc:creator>
		<pubDate>Tue, 27 Feb 2007 08:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://braindump.dk/tech/gwt-xdoclet/#comment-1962</guid>
		<description>Hooo my previous post has got some problems...

line 4 : replace &quot;gwt.inherts&quot; by -&gt; &quot;gwt.inherits&quot;</description>
		<content:encoded><![CDATA[<p>Hooo my previous post has got some problems&#8230;</p>
<p>line 4 : replace &#8220;gwt.inherts&#8221; by -&gt; &#8220;gwt.inherits&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
