<?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: Bridging the Gap Between Java and Cocoa</title>
	<atom:link href="http://blog.jayway.com/2009/03/24/bridging-the-gap-between-java-and-cocoa/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jayway.com/2009/03/24/bridging-the-gap-between-java-and-cocoa/</link>
	<description>Sharing Experience</description>
	<lastBuildDate>Sun, 12 Feb 2012 05:23:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ben S</title>
		<link>http://blog.jayway.com/2009/03/24/bridging-the-gap-between-java-and-cocoa/comment-page-1/#comment-14556</link>
		<dc:creator>Ben S</dc:creator>
		<pubDate>Thu, 29 Oct 2009 01:28:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1230#comment-14556</guid>
		<description>Interesting article.  Thanks!</description>
		<content:encoded><![CDATA[<p>Interesting article.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fredrik Olsson</title>
		<link>http://blog.jayway.com/2009/03/24/bridging-the-gap-between-java-and-cocoa/comment-page-1/#comment-5391</link>
		<dc:creator>Fredrik Olsson</dc:creator>
		<pubDate>Fri, 29 May 2009 11:20:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1230#comment-5391</guid>
		<description>@jacob: Yes for real implementations that is what I would do. For the sake of this example I wanted to execute any method without the need for an abstract glue instance.

But your point is taken, I should update the Java-example to be &quot;what Java coders expect&quot;.</description>
		<content:encoded><![CDATA[<p>@jacob: Yes for real implementations that is what I would do. For the sake of this example I wanted to execute any method without the need for an abstract glue instance.</p>
<p>But your point is taken, I should update the Java-example to be &#8220;what Java coders expect&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jakob</title>
		<link>http://blog.jayway.com/2009/03/24/bridging-the-gap-between-java-and-cocoa/comment-page-1/#comment-5389</link>
		<dc:creator>jakob</dc:creator>
		<pubDate>Fri, 29 May 2009 11:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1230#comment-5389</guid>
		<description>Maybe instead of introducing a hand-written ListCollector, use apache&#039;s CollectionUtils:

public class ListExample {
    public static void main(String[] args) {
        Collection list = Arrays.asList(new Number[]{12, 42, 366});
        Collection results = CollectionUtils.collect(list, new Transformer() {
                public Object transform(Object input) {
                    return ((Number)input).toString();
                }
            });
        System.out.println(results);
    }
}

Granted, they still don&#039;t use Generics, but otherwise it&#039;s more java-like to pass a anonymous interface-implementation as a quasi-closure.</description>
		<content:encoded><![CDATA[<p>Maybe instead of introducing a hand-written ListCollector, use apache&#8217;s CollectionUtils:</p>
<p>public class ListExample {<br />
    public static void main(String[] args) {<br />
        Collection list = Arrays.asList(new Number[]{12, 42, 366});<br />
        Collection results = CollectionUtils.collect(list, new Transformer() {<br />
                public Object transform(Object input) {<br />
                    return ((Number)input).toString();<br />
                }<br />
            });<br />
        System.out.println(results);<br />
    }<br />
}</p>
<p>Granted, they still don&#8217;t use Generics, but otherwise it&#8217;s more java-like to pass a anonymous interface-implementation as a quasi-closure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amos Wenger</title>
		<link>http://blog.jayway.com/2009/03/24/bridging-the-gap-between-java-and-cocoa/comment-page-1/#comment-5307</link>
		<dc:creator>Amos Wenger</dc:creator>
		<pubDate>Thu, 28 May 2009 16:37:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jayway.com/?p=1230#comment-5307</guid>
		<description>Small typo in the &quot;The Ruby Problem&quot; section: &quot;and then resturn a list&quot;, should be &quot;return&quot; =)</description>
		<content:encoded><![CDATA[<p>Small typo in the &#8220;The Ruby Problem&#8221; section: &#8220;and then resturn a list&#8221;, should be &#8220;return&#8221; =)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

