<?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: Maxlength HTML attribute for domain objects</title>
	<atom:link href="http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/</link>
	<description>Java and software development related thoughts</description>
	<lastBuildDate>Thu, 29 Dec 2011 20:59:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nitin</title>
		<link>http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/comment-page-1/#comment-1715</link>
		<dc:creator>Nitin</dc:creator>
		<pubDate>Mon, 05 Dec 2011 10:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.javathinking.com/?p=70#comment-1715</guid>
		<description>Thanks for showcasing this example. But, I guess this doesn&#039;t works for nested level fields.
For ex.
Class A has a instance of Class B as a field b, which in turn has field String title. Then in that case following line will not work, until &#039;b&#039; is already initialized
                                  maxlength=&quot;${A.b.constraints.title.getMaxSize()}&quot;</description>
		<content:encoded><![CDATA[<p>Thanks for showcasing this example. But, I guess this doesn&#8217;t works for nested level fields.<br />
For ex.<br />
Class A has a instance of Class B as a field b, which in turn has field String title. Then in that case following line will not work, until &#8216;b&#8217; is already initialized<br />
                                  maxlength=&#8221;${A.b.constraints.title.getMaxSize()}&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Marko</title>
		<link>http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/comment-page-1/#comment-296</link>
		<dc:creator>David Marko</dc:creator>
		<pubDate>Fri, 07 Mar 2008 10:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.javathinking.com/?p=70#comment-296</guid>
		<description>&#039;Command Objects&#039; is very unusual naming. :-) They should call it Forms or something.</description>
		<content:encoded><![CDATA[<p>&#8216;Command Objects&#8217; is very unusual naming. <img src='http://www.javathinking.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  They should call it Forms or something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/comment-page-1/#comment-295</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Fri, 07 Mar 2008 10:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.javathinking.com/?p=70#comment-295</guid>
		<description>Ah, thanks. I expect it will work with command objects since constraints are defined in exactly the same way.</description>
		<content:encoded><![CDATA[<p>Ah, thanks. I expect it will work with command objects since constraints are defined in exactly the same way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Marko</title>
		<link>http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/comment-page-1/#comment-293</link>
		<dc:creator>David Marko</dc:creator>
		<pubDate>Fri, 07 Mar 2008 09:28:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.javathinking.com/?p=70#comment-293</guid>
		<description>I mean this Grails feature
http://grails.org/doc/1.0.x/guide/6.%20The%20Web%20Layer.html#6.1.9%20Command%20Objects

Its like the domain object except it serves as form. Details are in docs.</description>
		<content:encoded><![CDATA[<p>I mean this Grails feature<br />
<a href="http://grails.org/doc/1.0.x/guide/6.%20The%20Web%20Layer.html#6.1.9%20Command%20Objects" rel="nofollow">http://grails.org/doc/1.0.x/guide/6.%20The%20Web%20Layer.html#6.1.9%20Command%20Objects</a></p>
<p>Its like the domain object except it serves as form. Details are in docs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/comment-page-1/#comment-291</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Thu, 06 Mar 2008 12:49:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.javathinking.com/?p=70#comment-291</guid>
		<description>David, I&#039;m not sure what you mean here - it makes sense with Domain objects since they are populated with constraints such as maxSize. What do you mean by command objects?</description>
		<content:encoded><![CDATA[<p>David, I&#8217;m not sure what you mean here &#8211; it makes sense with Domain objects since they are populated with constraints such as maxSize. What do you mean by command objects?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Marko</title>
		<link>http://www.javathinking.com/2008/03/maxlength-html-attribute-for-domain-objects/comment-page-1/#comment-290</link>
		<dc:creator>David Marko</dc:creator>
		<pubDate>Thu, 06 Mar 2008 10:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.javathinking.com/?p=70#comment-290</guid>
		<description>It makes absolute sense. Especially when one is using command objects with some specific settings. using this aproach one can avoid inconsistency . is it working with Command Objects as well?

David</description>
		<content:encoded><![CDATA[<p>It makes absolute sense. Especially when one is using command objects with some specific settings. using this aproach one can avoid inconsistency . is it working with Command Objects as well?</p>
<p>David</p>
]]></content:encoded>
	</item>
</channel>
</rss>

