<?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: Swing Style Aspect</title>
	<atom:link href="http://www.damnhandy.com/2005/11/30/swing-style-aspect/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.damnhandy.com/2005/11/30/swing-style-aspect/</link>
	<description>A blog about Java, REST, and other stuff.</description>
	<pubDate>Tue, 06 Jan 2009 23:31:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: keke</title>
		<link>http://www.damnhandy.com/2005/11/30/swing-style-aspect/comment-page-1/#comment-46</link>
		<dc:creator>keke</dc:creator>
		<pubDate>Tue, 13 Dec 2005 06:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.damnhandy.com/?p=30#comment-46</guid>
		<description>This is, at least to me, more annotation-like programming style, but not very Aspect :).</description>
		<content:encoded><![CDATA[<p>This is, at least to me, more annotation-like programming style, but not very Aspect :).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DamnHandy : Archive &#187; Swing Style Aspect Part 2</title>
		<link>http://www.damnhandy.com/2005/11/30/swing-style-aspect/comment-page-1/#comment-44</link>
		<dc:creator>DamnHandy : Archive &#187; Swing Style Aspect Part 2</dc:creator>
		<pubDate>Wed, 07 Dec 2005 12:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.damnhandy.com/?p=30#comment-44</guid>
		<description>[...] Seems a few folks don&#8217;t get what my previous post about the Swing Style Aspect was all about, so I decied to answer a few of the comments in a post. First and foremost, this is merely a proof-of-concept and means of playing with AOP. Second, aspects provide another way of doing things and the results can certainly be achieved through other means. You don&#8217;t have to like or use AOP, but I do and I&#8217;m simply playing with idea here. [...]</description>
		<content:encoded><![CDATA[<p>[...] Seems a few folks don&#8217;t get what my previous post about the Swing Style Aspect was all about, so I decied to answer a few of the comments in a post. First and foremost, this is merely a proof-of-concept and means of playing with AOP. Second, aspects provide another way of doing things and the results can certainly be achieved through other means. You don&#8217;t have to like or use AOP, but I do and I&#8217;m simply playing with idea here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Hardy</title>
		<link>http://www.damnhandy.com/2005/11/30/swing-style-aspect/comment-page-1/#comment-43</link>
		<dc:creator>John Hardy</dc:creator>
		<pubDate>Wed, 07 Dec 2005 04:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.damnhandy.com/?p=30#comment-43</guid>
		<description>Don't see the benefit? This is one of the reasons why web interfaces are a &lt;i&gt;lot&lt;/i&gt; quicker and easier to style than Swing ones.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t see the benefit? This is one of the reasons why web interfaces are a <i>lot</i> quicker and easier to style than Swing ones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: coolabanana</title>
		<link>http://www.damnhandy.com/2005/11/30/swing-style-aspect/comment-page-1/#comment-42</link>
		<dc:creator>coolabanana</dc:creator>
		<pubDate>Mon, 05 Dec 2005 06:46:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.damnhandy.com/?p=30#comment-42</guid>
		<description>I can't see the benefit. What you do with aspect is what you usually do in a look and feel. Hence for me this is the wrong way. What is your motivation to solve this problem with aspects?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t see the benefit. What you do with aspect is what you usually do in a look and feel. Hence for me this is the wrong way. What is your motivation to solve this problem with aspects?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a reader</title>
		<link>http://www.damnhandy.com/2005/11/30/swing-style-aspect/comment-page-1/#comment-41</link>
		<dc:creator>a reader</dc:creator>
		<pubDate>Sat, 03 Dec 2005 06:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.damnhandy.com/?p=30#comment-41</guid>
		<description>You could use a factory pattern to do this:

JLabel name1 = FactoryJLabel.create("Name 1","meduimGray");

Aspects are not the answers to everything. Use it only when you cannot find an elegant solution in plain Java.</description>
		<content:encoded><![CDATA[<p>You could use a factory pattern to do this:</p>
<p>JLabel name1 = FactoryJLabel.create(&#8221;Name 1&#8243;,&#8221;meduimGray&#8221;);</p>
<p>Aspects are not the answers to everything. Use it only when you cannot find an elegant solution in plain Java.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jared</title>
		<link>http://www.damnhandy.com/2005/11/30/swing-style-aspect/comment-page-1/#comment-40</link>
		<dc:creator>jared</dc:creator>
		<pubDate>Sat, 03 Dec 2005 05:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.damnhandy.com/?p=30#comment-40</guid>
		<description>Why do you need aspects for that?

JLabel createLabel(String text)
{
   JLabel label = new JLabel(text);
   label.setFont(new Font("Verdana", 10));
   label.setBackground(new Color(172, 172, 172));
   return label;
}

Seems easier.</description>
		<content:encoded><![CDATA[<p>Why do you need aspects for that?</p>
<p>JLabel createLabel(String text)<br />
{<br />
   JLabel label = new JLabel(text);<br />
   label.setFont(new Font(&#8221;Verdana&#8221;, 10));<br />
   label.setBackground(new Color(172, 172, 172));<br />
   return label;<br />
}</p>
<p>Seems easier.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
