<?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: Java on Leopard</title>
	<atom:link href="http://seanreilly.com/blog/archives/42/feed" rel="self" type="application/rss+xml" />
	<link>http://seanreilly.com/blog/archives/42</link>
	<description></description>
	<lastBuildDate>Wed, 23 Apr 2008 13:42:18 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mustafa</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-666</link>
		<dc:creator>Mustafa</dc:creator>
		<pubDate>Tue, 29 Jan 2008 05:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-666</guid>
		<description>Alright, I was fine for a while but now i have another problem with the brushmetallook in Leopard. I cannot get the default drop shadow to work. Is there a trick to it?</description>
		<content:encoded><![CDATA[<p>Alright, I was fine for a while but now i have another problem with the brushmetallook in Leopard. I cannot get the default drop shadow to work. Is there a trick to it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-665</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 29 Jan 2008 02:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-665</guid>
		<description>Yea, I did some tests and Java 1.6 broke the unified toolbar. Thanks for the help.</description>
		<content:encoded><![CDATA[<p>Yea, I did some tests and Java 1.6 broke the unified toolbar. Thanks for the help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sreilly</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-664</link>
		<dc:creator>sreilly</dc:creator>
		<pubDate>Mon, 28 Jan 2008 21:10:13 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-664</guid>
		<description>My guess was going to be the version of java.  Eclipse seems to be specifically calling java 1.6.  I&#039;m not sure what Xcode is calling.  I do my development using Xcode and java 1.5.  I tested the above code at the command line using Java 1.5 so Xcode probably isn&#039;t part of the problem.</description>
		<content:encoded><![CDATA[<p>My guess was going to be the version of java.  Eclipse seems to be specifically calling java 1.6.  I&#8217;m not sure what Xcode is calling.  I do my development using Xcode and java 1.5.  I tested the above code at the command line using Java 1.5 so Xcode probably isn&#8217;t part of the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-663</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 28 Jan 2008 17:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-663</guid>
		<description>Well, I figured it out...It works in Xcode but not Eclipse for some reason...Sigh, I love eclipse...</description>
		<content:encoded><![CDATA[<p>Well, I figured it out&#8230;It works in Xcode but not Eclipse for some reason&#8230;Sigh, I love eclipse&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-662</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 28 Jan 2008 17:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-662</guid>
		<description>http://www.picgarage.net/images/outpu_38024_686.jpeg

sreilly, that is what I get when I run that code. Could it be that I am using the Java 1.6 preview?</description>
		<content:encoded><![CDATA[<p><a href="http://www.picgarage.net/images/outpu_38024_686.jpeg" rel="nofollow">http://www.picgarage.net/images/outpu_38024_686.jpeg</a></p>
<p>sreilly, that is what I get when I run that code. Could it be that I am using the Java 1.6 preview?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sreilly</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-661</link>
		<dc:creator>sreilly</dc:creator>
		<pubDate>Mon, 28 Jan 2008 07:07:01 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-661</guid>
		<description>Alex:  sure, the code below works for me.  Keep in mind that if you add any JPanels and want the background gradient to show through you will need to call setOpaque(false) on them.

import javax.swing.*;
import java.awt.*;

public class UnifiedTest
  extends JFrame
{
  public UnifiedTest() {
    super(&quot;hi&quot;);
    getContentPane().add(new JLabel(&quot;this should be unified&quot;, SwingConstants.CENTER));
    getRootPane().putClientProperty(&quot;apple.awt.brushMetalLook&quot;, Boolean.TRUE);
    setSize(400, 300);
  }

  public static void main(String argv[]) {
    new UnifiedTest().show();
  }
}</description>
		<content:encoded><![CDATA[<p>Alex:  sure, the code below works for me.  Keep in mind that if you add any JPanels and want the background gradient to show through you will need to call setOpaque(false) on them.</p>
<p>import javax.swing.*;<br />
import java.awt.*;</p>
<p>public class UnifiedTest<br />
  extends JFrame<br />
{<br />
  public UnifiedTest() {<br />
    super(&#8221;hi&#8221;);<br />
    getContentPane().add(new JLabel(&#8221;this should be unified&#8221;, SwingConstants.CENTER));<br />
    getRootPane().putClientProperty(&#8221;apple.awt.brushMetalLook&#8221;, Boolean.TRUE);<br />
    setSize(400, 300);<br />
  }</p>
<p>  public static void main(String argv[]) {<br />
    new UnifiedTest().show();<br />
  }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-660</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 28 Jan 2008 03:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-660</guid>
		<description>I can&#039;t get the unified toolbar look to work. I tried setting other properties with success but this one refuses to work. Mind posting a brief code sample to see how you did it?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get the unified toolbar look to work. I tried setting other properties with success but this one refuses to work. Mind posting a brief code sample to see how you did it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alessandro</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-652</link>
		<dc:creator>Alessandro</dc:creator>
		<pubDate>Sat, 22 Dec 2007 12:26:47 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-652</guid>
		<description>This is fantastic!, thanks!</description>
		<content:encoded><![CDATA[<p>This is fantastic!, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mustafa</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-650</link>
		<dc:creator>Mustafa</dc:creator>
		<pubDate>Wed, 19 Dec 2007 22:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-650</guid>
		<description>This is great information. I think its time to upgrade!!!!</description>
		<content:encoded><![CDATA[<p>This is great information. I think its time to upgrade!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://seanreilly.com/blog/archives/42/comment-page-1#comment-649</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Tue, 18 Dec 2007 12:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://seanreilly.com/blog/archives/42#comment-649</guid>
		<description>Hi Mustafa,
Some of those flags work on tiger, but on pre-leopard systems the apple.awt.brushMetalLook flag will make the app look like the old iTunes with the brushed metal look.

Thanks,
Sean</description>
		<content:encoded><![CDATA[<p>Hi Mustafa,<br />
Some of those flags work on tiger, but on pre-leopard systems the apple.awt.brushMetalLook flag will make the app look like the old iTunes with the brushed metal look.</p>
<p>Thanks,<br />
Sean</p>
]]></content:encoded>
	</item>
</channel>
</rss>
