<?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"
	>
<channel>
	<title>Comments for blog @ l2fprod.com</title>
	<atom:link href="http://l2fprod.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://l2fprod.com/blog</link>
	<description>log.info("fred is blogging");</description>
	<pubDate>Sat, 11 Oct 2008 13:26:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on the fun of Swing JTable column resizing by Swing links of the week: September 7 : Pushing Pixels</title>
		<link>http://l2fprod.com/blog/2008/08/30/the-fun-of-swing-jtable-column-resizing/#comment-138</link>
		<dc:creator>Swing links of the week: September 7 : Pushing Pixels</dc:creator>
		<pubDate>Tue, 09 Sep 2008 18:01:48 +0000</pubDate>
		<guid isPermaLink="false">http://l2fprod.com/blog/?p=86#comment-138</guid>
		<description>[...] Lavigne adds a JTable feature that he is missing from the Windows Explorer application - table header filler that spans to fit the available width [...]</description>
		<content:encoded><![CDATA[<p>[...] Lavigne adds a JTable feature that he is missing from the Windows Explorer application - table header filler that spans to fit the available width [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on the fun of Swing JTable column resizing by Jeanette Winzenburg</title>
		<link>http://l2fprod.com/blog/2008/08/30/the-fun-of-swing-jtable-column-resizing/#comment-136</link>
		<dc:creator>Jeanette Winzenburg</dc:creator>
		<pubDate>Tue, 09 Sep 2008 14:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://l2fprod.com/blog/?p=86#comment-136</guid>
		<description>Hi Fred,

cool idea to add a dummy header :-) Couldn't resist playing a bit (some code in my swingx incubator, table package under java and test source hierarchies) and having a couple of comments (in no particular order)

- to my surprise it's working cool with SwingX JXTable and its support for hiding columns.  
- the filler isn't updating its property listeners to the tableColumns on add/remove to/from the columnModel (which probably is the reason its working with JXTable). In the case of a remove that'll leave dangling listeners in the filler. Looks like you don't really need them: the filler is useful only if AUTO_RESIZE_OFF which will always resize the table, so the notification reaches your filler via the componentEvent. Maybe you should listen to mode changes and un-/install the filler  as appropriate
- the filler can't cope with setting a new tableColumnModel - not the most probable event, but just for completeness :-)
- the visual appearance isn't very appealing in LAFs where the viewport background is different from the table background. 
- the functionality is not quite the same as in explorer: f.i. a right click on the area below the filler should show the table's popup (as far as I remember Santhosh has an example of how to re-target a mouselistener)
- the filler gets a bit confused with with LAF updates (again not the most frequent requirement, but ...): to reproduce in my example resize the last column with the mouse, toggle the LAF and move the mouse over the filler - the cursor now is always a resize cursor. The most probable reason (didn't dig, though) might be the mouselistener installed by the new LAF, which are not removed (as you do when creating the filler)

Good work!

Jeanette</description>
		<content:encoded><![CDATA[<p>Hi Fred,</p>
<p>cool idea to add a dummy header <img src='http://l2fprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Couldn&#8217;t resist playing a bit (some code in my swingx incubator, table package under java and test source hierarchies) and having a couple of comments (in no particular order)</p>
<p>- to my surprise it&#8217;s working cool with SwingX JXTable and its support for hiding columns.<br />
- the filler isn&#8217;t updating its property listeners to the tableColumns on add/remove to/from the columnModel (which probably is the reason its working with JXTable). In the case of a remove that&#8217;ll leave dangling listeners in the filler. Looks like you don&#8217;t really need them: the filler is useful only if AUTO_RESIZE_OFF which will always resize the table, so the notification reaches your filler via the componentEvent. Maybe you should listen to mode changes and un-/install the filler  as appropriate<br />
- the filler can&#8217;t cope with setting a new tableColumnModel - not the most probable event, but just for completeness <img src='http://l2fprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
- the visual appearance isn&#8217;t very appealing in LAFs where the viewport background is different from the table background.<br />
- the functionality is not quite the same as in explorer: f.i. a right click on the area below the filler should show the table&#8217;s popup (as far as I remember Santhosh has an example of how to re-target a mouselistener)<br />
- the filler gets a bit confused with with LAF updates (again not the most frequent requirement, but &#8230;): to reproduce in my example resize the last column with the mouse, toggle the LAF and move the mouse over the filler - the cursor now is always a resize cursor. The most probable reason (didn&#8217;t dig, though) might be the mouselistener installed by the new LAF, which are not removed (as you do when creating the filler)</p>
<p>Good work!</p>
<p>Jeanette</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on R.I.P JTaskPaneGroup, Hello JXTaskPane by Jesus Huertas</title>
		<link>http://l2fprod.com/blog/2005/06/09/r_i_p_jtaskpanegroup_hello/#comment-47</link>
		<dc:creator>Jesus Huertas</dc:creator>
		<pubDate>Thu, 26 Jun 2008 09:27:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.l2fprod-hosting.dyndns.org/blog/?p=6#comment-47</guid>
		<description>Hello,

I'm using l2fprod and I like to show a password field in a propertySheet but by default all values field are Strings decrypted
When I take the focus of the field in my PropertyEditor class I can create a JPasswordField and the value is encrypted but when focus is lost It becames JTextField??

Thank you for your help.
Bye</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;m using l2fprod and I like to show a password field in a propertySheet but by default all values field are Strings decrypted<br />
When I take the focus of the field in my PropertyEditor class I can create a JPasswordField and the value is encrypted but when focus is lost It becames JTextField??</p>
<p>Thank you for your help.<br />
Bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on more heardontv.com viral&#8230; by YOUR FATHER :</title>
		<link>http://l2fprod.com/blog/2008/04/12/more-heardontvcom-viral/#comment-39</link>
		<dc:creator>YOUR FATHER :</dc:creator>
		<pubDate>Sat, 12 Apr 2008 18:23:48 +0000</pubDate>
		<guid isPermaLink="false">http://L2FProd.com/blog/?p=53#comment-39</guid>
		<description>c'est pas un montage des fois, cette photo!!!</description>
		<content:encoded><![CDATA[<p>c&#8217;est pas un montage des fois, cette photo!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on javootoo.com gets a facelift by Kirill Grouchnikov</title>
		<link>http://l2fprod.com/blog/2007/09/05/javootoo_com_gets_a_facelit/#comment-16</link>
		<dc:creator>Kirill Grouchnikov</dc:creator>
		<pubDate>Thu, 06 Sep 2007 01:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.l2fprod-hosting.dyndns.org/blog/?p=33#comment-16</guid>
		<description>Excellent. Very nice design :)</description>
		<content:encoded><![CDATA[<p>Excellent. Very nice design <img src='http://l2fprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yosemite: Day 1 / Oakhurst by maman</title>
		<link>http://l2fprod.com/blog/2007/05/13/yosemite_day_1_oakhurst/#comment-12</link>
		<dc:creator>maman</dc:creator>
		<pubDate>Mon, 14 May 2007 19:03:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.l2fprod-hosting.dyndns.org/blog/?p=30#comment-12</guid>
		<description>j'espere que vous vous rencontrerez tres joli le parc mais c'est qoui la bete sur la montagne
une photo de vous deux la bas
gros bisous ,profites bien de ta derniere semaine</description>
		<content:encoded><![CDATA[<p>j&#8217;espere que vous vous rencontrerez tres joli le parc mais c&#8217;est qoui la bete sur la montagne<br />
une photo de vous deux la bas<br />
gros bisous ,profites bien de ta derniere semaine</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yosemite: Day 2 / Yosemite Village, Curry Village, Mirror Lake, El Capitano and the others by Andrea</title>
		<link>http://l2fprod.com/blog/2007/05/14/yosemite_day_2_yosemite_village1/#comment-14</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Mon, 14 May 2007 09:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.l2fprod-hosting.dyndns.org/blog/?p=31#comment-14</guid>
		<description>Fred come on! We want some pics!!!!

;-)
Amuse toi bien!
Andrea</description>
		<content:encoded><![CDATA[<p>Fred come on! We want some pics!!!!<br />
 <img src='http://l2fprod.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> Amuse toi bien!<br />
Andrea</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yosemite: Day 2 / Yosemite Village, Curry Village, Mirror Lake, El Capitano and the others by jpl</title>
		<link>http://l2fprod.com/blog/2007/05/14/yosemite_day_2_yosemite_village1/#comment-15</link>
		<dc:creator>jpl</dc:creator>
		<pubDate>Mon, 14 May 2007 07:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.l2fprod-hosting.dyndns.org/blog/?p=31#comment-15</guid>
		<description>beautiful, great,huge,fabulous.
Et une belle voiture de plus. Même de la neige!
Profites bien.
Bises;PAPA</description>
		<content:encoded><![CDATA[<p>beautiful, great,huge,fabulous.<br />
Et une belle voiture de plus. Même de la neige!<br />
Profites bien.<br />
Bises;PAPA</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yosemite: Day 1 / Oakhurst by Jonathan</title>
		<link>http://l2fprod.com/blog/2007/05/13/yosemite_day_1_oakhurst/#comment-13</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Sun, 13 May 2007 20:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.l2fprod-hosting.dyndns.org/blog/?p=30#comment-13</guid>
		<description>Amuse toi bien au parc! je reviens de Göteborg, 1h57... acceptable.
Je passe a San Francisco demain... I'll wave from the plane ;)</description>
		<content:encoded><![CDATA[<p>Amuse toi bien au parc! je reviens de Göteborg, 1h57&#8230; acceptable.<br />
Je passe a San Francisco demain&#8230; I&#8217;ll wave from the plane <img src='http://l2fprod.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaOne, here I come by Andrea</title>
		<link>http://l2fprod.com/blog/2007/05/04/javaone_here_i_come/#comment-11</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Fri, 04 May 2007 21:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.l2fprod-hosting.dyndns.org/blog/?p=22#comment-11</guid>
		<description>I'll be waiting for a complete report about JRuby, you know that!

Have a safe flight!</description>
		<content:encoded><![CDATA[<p>I&#8217;ll be waiting for a complete report about JRuby, you know that!</p>
<p>Have a safe flight!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
