<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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>Toni Epple</title>
	<atom:link href="http://eppleton.sharedhost.de/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://eppleton.sharedhost.de/blog</link>
	<description>Toni's blog on NetBeans and Java</description>
	<pubDate>Tue, 24 Aug 2010 18:21:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>500 NetBeans Users&#8230;</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1191</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1191#comments</comments>
		<pubDate>Tue, 24 Aug 2010 18:21:59 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1191</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1191";</script>The NetBeans User Group in XING has almost 497 members now. Will you be member number 500?
http://www.xing.com/group-20148.82db20
]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1191";</script><p>The NetBeans User Group in XING has almost 497 members now. Will you be member number 500?</p>
<p>http://www.xing.com/group-20148.82db20</p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1191</wfw:commentRss>
		</item>
		<item>
		<title>Extensible Node Hierarchies for Custom Project Types</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1184</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1184#comments</comments>
		<pubDate>Wed, 18 Aug 2010 09:04:54 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1184</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1184";</script>Since NetBeans 6.0 you can extend existing Project Types by registering a NodeFactory as described here:
http://platform.netbeans.org/tutorials/60/nbm-projectextension.html
That&#8217;s cool, but what about your own project types, not only the ones predefined by NetBeans? So if for example you defined your own project type as described here:
http://platform.netbeans.org/tutorials/nbm-projecttype.html
When you look at the registration of the NodeFactory in this tutorial, [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1184";</script><p>Since NetBeans 6.0 you can extend existing Project Types by registering a <a href="http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/org/netbeans/spi/project/ui/support/NodeFactory.html">NodeFactory</a> as described here:</p>
<p><a href="http://platform.netbeans.org/tutorials/60/nbm-projectextension.html">http://platform.netbeans.org/tutorials/60/nbm-projectextension.html</a></p>
<p>That&#8217;s cool, but what about your own project types, not only the ones predefined by NetBeans? So if for example you defined your own project type as described here:</p>
<p><a href="http://platform.netbeans.org/tutorials/nbm-projecttype.html">http://platform.netbeans.org/tutorials/nbm-projecttype.html</a></p>
<p>When you look at the registration of the <a href="http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/org/netbeans/spi/project/ui/support/NodeFactory.html">NodeFactory</a> in this tutorial, the NodeFactory is registered in folder &#8220;Projects/org-netbeans-modules-web-project&#8221;. Where does that magical string come from, and how do you provide your own? The string looks like a module id, which makes sense since the granularity you&#8217;d choose when defining project types is most likely module level. The API Doc for NodeFactory has the answers:</p>
<p>&#8220;Project types wanting to make use of NodeFactory can use the   <a href="http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/org/netbeans/spi/project/ui/support/NodeFactorySupport.html#createCompositeChildren%28org.netbeans.api.project.Project,%20java.lang.String%29"><code>NodeFactorySupport.createCompositeChildren(org.netbeans.api.project.Project, java.lang.String)</code></a> method to create the Project nodes&#8217;s children.</p>
<pre>public class FooBarLogicalViewProvider implements LogicalViewProvider {
    public Node createLogicalView() {
        return new FooBarRootNode(NodeFactorySupport.createCompositeChildren(myProject, "Projects/org-foo-bar-project/Nodes"));
    }
}"</pre>
<p>So when you want to have this extension mechanism in your own project type you simply use the helper Method</p>
<pre>NodeFactorySupport.<a href="http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/org/netbeans/spi/project/ui/support/NodeFactorySupport.html#createCompositeChildren%28org.netbeans.api.project.Project,%20java.lang.String%29">createCompositeChildren(</a><a title="class or interface in org.netbeans.api.project" href="http://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectapi/org/netbeans/api/project/Project.html?is-external=true">Project</a> project,
                                               <a title="class or interface in java.lang" href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true">String</a> folderPath).</pre>
<p>Just pass in a string to identify the folder, e.g. the name of the module defining your project type, and the API will take care of the rest. Looking at the custom project type tutorial you would change the TextNode in the LogicalViewProvider to:</p>
<pre>public TextNode(Node node, DemoProject project) throws DataObjectNotFoundException {
            super(node, NodeFactorySupport.createCompositeChildren(project, "Projects/<strong>de-eppleton-project</strong>/Nodes"),
                    //new FilterNode.Children(node),
                    //The projects system wants the project in the Node's lookup.
                    //NewAction and friends want the original Node's lookup.
                    //Make a merge of both
                    new ProxyLookup(new Lookup[]{Lookups.singleton(project),
                        node.getLookup()
                    }));
            this.project = project;
        }</pre>
<p>As a result you can now register new NodeProviders for your custom project type under the path &#8220;<strong><strong>de-eppleton-project</strong></strong>&#8221; either in the layer<strong><strong> </strong></strong>or use the Annotation<strong><strong>:</strong></strong></p>
<p><strong>@NodeFactory.Registration(projectType=&#8221;de-eppleton-project&#8221;)</strong><br />
public class AdditionalNodes implements NodeFactory{</p>
<p>@Override<br />
public NodeList&lt;?&gt; createNodes(Project prjct) {<br />
AbstractNode root = new AbstractNode(Children.LEAF);<br />
root.setDisplayName(&#8221;additional node&#8221;);<br />
return NodeFactorySupport.fixedNodeList(root);<br />
}<br />
}</p>
<p>And the result looks like this:</p>
<p><a href="http://eppleton.sharedhost.de/blog/wp-content/uploads/2010/08/bild-1.png"><img class="alignleft size-full wp-image-1185" title="bild-1" src="http://eppleton.sharedhost.de/blog/wp-content/uploads/2010/08/bild-1.png" alt="bild-1" width="378" height="132" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1184</wfw:commentRss>
		</item>
		<item>
		<title>More NetBeans talks at JavaOne</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1179</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1179#comments</comments>
		<pubDate>Thu, 12 Aug 2010 16:33:16 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[javaone]]></category>

		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1179</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1179";</script>I recently shared a list of NetBeans Platform presentations here:
Toni Epple » NetBeans Platform talks at JavaOne.
Adam Bien just sent me this list of his presentations, which will be held using NetBeans as an IDE:


S313248 Creating Lightweight Applications with Nothing but Vanilla Java EE 6
adam-bien.com, Adam Bien, Freelancer


S313250 JavaFX Script: The Java Patterns Killer
adam-bien.com, Adam [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1179";</script><p>I recently shared a list of NetBeans Platform presentations here:</p>
<p><a href="http://eppleton.sharedhost.de/blog/?p=1167">Toni Epple » NetBeans Platform talks at JavaOne</a>.</p>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: 16px;">Adam Bien just sent me this list of his presentations, which will be held using NetBeans as an IDE:</span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: 16px;"><br />
</span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: 16px;">S313248 Creating Lightweight Applications with Nothing but Vanilla Java EE 6</span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"><a href="http://adam-bien.com/">adam-bien.com</a>, Adam Bien, Freelancer</span></span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"><br />
</span></span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;">S313250 JavaFX Script: The Java Patterns Killer</span></span><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"><a href="http://adam-bien.com/"></a></span></span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"><a href="http://adam-bien.com/">adam-bien.com</a>, Adam Bien, Freelancer</span></span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"></p>
<div></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;">S314243 Hacking Heating Systems with Java EE 6, JavaFX, and Scripting</span></span><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"><a href="http://adam-bien.com/"></a></span></span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"><a href="http://adam-bien.com/">adam-bien.com</a>, Adam Bien, Freelancer</span></span></div>
<div><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;"></p>
<div style="color: #000000; font-family: Helvetica; font-size: medium;"></div>
<div style="color: #000000; font-family: Helvetica; font-size: medium;"><span class="Apple-style-span" style="font-family: Georgia,Times,fantasy; color: #333333; font-size: medium;"><span class="Apple-style-span" style="font-size: 16px;">Looking forward to see you there!<br />
</span></span></div>
<p></span></span></div>
<p></span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1179</wfw:commentRss>
		</item>
		<item>
		<title>Free NetBeans Platform Training in Goettingen</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1175</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1175#comments</comments>
		<pubDate>Thu, 12 Aug 2010 15:05:13 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1175</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1175";</script>After last years huge success with the NetBeans Platform Certified Training at the Source Talk Tage in Goettingen we decided to do it again this year to give those a chance who were too late last year.
The training is free of charge for students ( others will have to pay a small fee ):
Source Talk [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1175";</script><p>After last years huge success with the NetBeans Platform Certified Training at the Source Talk Tage in Goettingen we decided to do it again this year to give those a chance who were too late last year.</p>
<p>The training is free of charge for students ( others will have to pay a small fee ):</p>
<p><a href="http://www.sourcetalk.de/2010/abstracts.php?show=0831-trn2">Source Talk Tage 2010 - Abstracts</a>.</p>
<p>And don&#8217;t miss the great talks in the Java track! Trainers this year are Aljoscha Rittner and me. Thanks to the STT team for organizing this event!</p>
<p>For those who can&#8217;t join us at STT, there are a couple of <a href="http://netbeanstraining.eventbrite.com/">trainings in the next few months in Munich</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1175</wfw:commentRss>
		</item>
		<item>
		<title>Brussels JUG NetBeans events</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1172</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1172#comments</comments>
		<pubDate>Wed, 11 Aug 2010 17:47:46 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1172</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1172";</script>If nothing unexpected happens I&#8217;ll go to Brussels on October 28th for a NetBeans Bootcamp.
And most likely there&#8217;ll be even more NetBeans events there soon:
Proposed topics:
- NetBeans, a Swing OSGi Desktop Application Framework
The NetBeans Platform is a generic  framework for Swing applications. It provides the “plumbing” that,  usually, every developer has to write [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1172";</script><p>If nothing unexpected happens I&#8217;ll go to Brussels on October 28th for a NetBeans Bootcamp.</p>
<p>And most likely there&#8217;ll be even more NetBeans events there soon:</p>
<p>Proposed topics:</p>
<p style="padding-left: 30px;">- NetBeans, a Swing OSGi Desktop Application Framework</p>
<p style="padding-left: 60px;">The NetBeans Platform is a generic  framework for Swing applications. It provides the “plumbing” that,  usually, every developer has to write themselves—saving state,  connecting actions to menu items, toolbar items and keyboard shortcuts;  window management, and so on. Since NetBeans 6.9 the platform also  endorse s the OSGi standard. In this presentation you’ll learn how easy  it is to use the platform for building modular Desktop Applications with  Swing and OSGi.</p>
<p><a href="http://www.brussels-jug.be/?page_id=175">Brussels JUG » Projected Speakers (16)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1172</wfw:commentRss>
		</item>
		<item>
		<title>NetBeans Platform talks at JavaOne</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1167</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1167#comments</comments>
		<pubDate>Wed, 11 Aug 2010 15:08:28 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[netbeans]]></category>

		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1167</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1167";</script>This year I had the honour of being one of the reviewers for JavaOne, and it was tough choosing from tons of good submissions. It&#8217;s good to see that so many Platform related talks made it this year. Here&#8217;s a list of talks related to the NetBeans Platform:
S314266, The Cutting Edge of Desktop Software: The [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1167";</script><p>This year I had the honour of being one of the reviewers for JavaOne, and it was tough choosing from tons of good submissions. It&#8217;s good to see that so many Platform related talks made it this year. Here&#8217;s a list of talks related to the NetBeans Platform:</p>
<p>S314266, <strong>The Cutting Edge of Desktop Software: The NetBeans Platform in Practice</strong><br />
Speaker(s): Geertjan Wielenga, Oracle, Writer</p>
<p>S314363, <strong>Efficient Development of Large NetBeans Platform Applications with Maven</strong><br />
Speaker(s): Fabrizio Giudici, Tidalwave s.a.s., Java Architect</p>
<p>S314711, <strong>Building Software with Rich Client Platforms (NetBeans RCP and Eclipse RCP)</strong><br />
Speaker(s): Rikard Thulin, squeed.com, Senior Consultant</p>
<p>S313667, <strong>Swing OSGi Modular Desktop Application Framework</strong><br />
Speaker(s): Anton Epple, Eppleton, Consultant<br />
Jaroslav Tulach, Oracle, NetBeans Platform Architect</p>
<p>S313187, <strong>Quickly and Efficiently Build CRUD Applications with Rich Client Platform</strong><br />
Speaker(s): Jiri Rechtacek, Oracle, SW Eng<br />
Geertjan Wielenga, Oracle, Writer</p>
<p>S314141, <strong>Patterns for Modularity</strong><br />
Speaker(s): Jaroslav Tulach, Oracle, NetBeans Platform Architect<br />
Anton Epple, Eppleton, Consultant<br />
Zoran Sevarac, University of Belgrade , Phd student</p>
<p>S313545, <strong>Bridge the Gap Between Desktop Application Users and Developers</strong><br />
Speaker(s): Jaroslav Tulach, Oracle, NetBeans Platform Architect<br />
Jindrich Sedek, Oracle, NetBeans quality engineer</p>
<p>S313188, <strong>Creating Modular CRUD Desktop Applications</strong><br />
Speaker(s): Jiri Rechtacek, Oracle, SW Eng<br />
Geertjan Wielenga, Oracle, Writer</p>
<p>It&#8217;s really great to see so many talks on our beloved platform. If you&#8217;ve seen more, let me know! And right after J1 there&#8217;s a training at Marakana with Geertjan, me and friends from The Dream Team and community: <a href="http://marakana.com/training/java/netbeans_platform.html">http://marakana.com/training/java/netbeans_platform.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1167</wfw:commentRss>
		</item>
		<item>
		<title>New Training Opportunities in Munich</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1165</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1165#comments</comments>
		<pubDate>Tue, 10 Aug 2010 15:41:30 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[OSGi]]></category>

		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1165</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1165";</script>A NetBeans Platform training is going to be held in Munich  on September 8th. It will be the first of a series of NetBeans Platform trainings in Munich.
The three-day course will be led by NetBeans Platform expert and NetBeans Dream Team member Anton Epple (aka as &#8220;Toni&#8221; or &#8220;me&#8221;). The training is especially tailored [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1165";</script><p>A <strong>NetBeans Platform training</strong> is going to be held in <strong>Munich </strong> on <strong>September 8th</strong>. It will be the first of a series of NetBeans Platform trainings in Munich<strong></strong>.</p>
<p>The three-day course will be led by NetBeans Platform expert and NetBeans Dream Team member Anton Epple (aka as &#8220;Toni&#8221; or &#8220;me&#8221;). The training is especially tailored for the needs of professional Java developers working on commercial applications. To get you started quickly all lessons start with a short, but thorough introduction of a new API or concept immediately followed by hands-on exercises. The ratio of theory / practice is about 40:60. For more information and the latest news check the<a href="http://netbeanstraining.eventbrite.com/"> registration site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1165</wfw:commentRss>
		</item>
		<item>
		<title>Javamagazin - Article about NB 6.9</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1162</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1162#comments</comments>
		<pubDate>Thu, 05 Aug 2010 10:42:33 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1162</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1162";</script>I recently wrote an article for the JAXEnter online portal about the new release of NetBeans. Today I received a copy of the latest Javamagazin to find out, that the article made it to the print issue as well. What a nice surprise!
]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1162";</script><p>I recently wrote an article for the JAXEnter online portal about the new release of NetBeans. Today I received a copy of the <a href="http://it-republik.de/jaxenter/java-magazin-ausgaben/Tomcat-7-000409.html">latest Javamagazin</a> to find out, that the article made it to the print issue as well. What a nice surprise!</p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1162</wfw:commentRss>
		</item>
		<item>
		<title>New Article on NB 6.9</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1157</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1157#comments</comments>
		<pubDate>Wed, 30 Jun 2010 13:41:13 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[OSGi]]></category>

		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1157</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1157";</script>On friday I wrote an article about the new version of NetBeans for JAXenter. Hope you like it (in german):
http://it-republik.de/jaxenter/artikel/NetBeans-6.9&#8212;Was-ist-neu-3172.html
]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1157";</script><p>On friday I wrote an article about the new version of NetBeans for JAXenter. Hope you like it (in german):</p>
<p><a href="http://it-republik.de/jaxenter/artikel/NetBeans-6.9---Was-ist-neu-3172.html">http://it-republik.de/jaxenter/artikel/NetBeans-6.9&#8212;Was-ist-neu-3172.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1157</wfw:commentRss>
		</item>
		<item>
		<title>NetBeans Platform at JavaOne</title>
		<link>http://eppleton.sharedhost.de/blog/?p=1152</link>
		<comments>http://eppleton.sharedhost.de/blog/?p=1152#comments</comments>
		<pubDate>Mon, 10 May 2010 21:45:09 +0000</pubDate>
		<dc:creator>Toni</dc:creator>
		
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://eppleton.sharedhost.de/blog/?p=1152</guid>
		<description><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1152";</script>I’ve just received notice that my JavaOne submission for this year has been accepted. This years talk is about “Patterns for Modularity” ( Session ID: S314141 ) and I think it’s a very timely topic ( which means I submitted it just in time before the deadline closed  ). I’ve invited Zoran Sevarac and [...]]]></description>
			<content:encoded><![CDATA[<script type="text/javascript">dzone_url = "http://eppleton.sharedhost.de/blog/?p=1152";</script><p>I’ve just received notice that my JavaOne submission for this year has been accepted. This years talk is about “Patterns for Modularity” ( Session ID: S314141 ) and I think it’s a very timely topic ( which means I submitted it just in time before the deadline closed <img src='http://eppleton.sharedhost.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ). I’ve invited Zoran Sevarac and Jaroslav Tulach to join me and I’m really looking forward to this. We’ll discuss topics like how to identify module boundaries, API design, how different module system ( like NetBeans Platform and OSGi )deal with loosely coupled communication and even if and when we need a module system, and when it’s an overkill. It will be a huge effort to boil this down to session format, but I promise we’ll do our very best to capture the essence and it will be worth your time.</p>
<p>I’ll also join Jarda for his talk about “Swing OSGi Modular Desktop Application Framework ” (Session ID: S313667). I did a lot of experimenting with mixing NB Modules and OSGi, and I’m really eager to prepare some cool new demos.</p>
<p>I was on the reviewer team this year, and there were some very promising talks about NetBeans &#038; especially the platform. If you get your acceptance letter, let us know. Maybe we can put up a schedule of those talks somewhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://eppleton.sharedhost.de/blog/?feed=rss2&amp;p=1152</wfw:commentRss>
		</item>
	</channel>
</rss>
