<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-2609</id>
	<title>Nabble - Netbeans RCP/Platform Users (Open API)</title>
	<updated>2009-11-18T16:19:53Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Netbeans-RCP-Platform-Users-(Open-API)-f2609.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Netbeans-RCP-Platform-Users-%28Open-API%29-f2609.html" />
	<subtitle type="html">&lt;p&gt;The main list for discussions on how to use the NetBeans APIs for NetBeans Modules/Plugins or NetBeans RCP based applications. See &lt;a href=&quot;http://platform.netbeans.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://platform.netbeans.org&lt;/a&gt; for more info.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Recommended for :&lt;/b&gt; Anyone building modules for the NetBeans IDE, or applications on top of the NetBeans Platform.&lt;/p&gt;</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26418278</id>
	<title>Top Component Singleton</title>
	<published>2009-11-18T16:19:53Z</published>
	<updated>2009-11-18T16:19:53Z</updated>
	<author>
		<name>StudentB</name>
	</author>
	<content type="html">Has anyone experienced their programmatically created Top Component singleton docked into the Editor mode not scrolling when the window is resized. &amp;nbsp;In Netbeans 6.1 the window would not scroll but it would just push it out of view. &amp;nbsp;Now with Netbeans 6.7.1 the window will not push out of view nor scroll which is very annoying. &amp;nbsp;I would prefer it to scroll like the other Top Components that are created through the wizard regardless of where they are docked. &amp;nbsp;I am still looking but I can't find the setting that controls this. &amp;nbsp;I don't think it has to do with where it is docked because I can a wizard created top component and dock it into the editor area and it will scroll.
&lt;br&gt;&lt;br&gt;thx in advance...</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Top-Component-Singleton-tp26418278p26418278.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26415381</id>
	<title>Re: Branding about dialog...</title>
	<published>2009-11-18T12:43:47Z</published>
	<updated>2009-11-18T12:43:47Z</updated>
	<author>
		<name>Doogle T</name>
	</author>
	<content type="html">Any update on this? &amp;nbsp;Debug mode seems to work fine, but building results in the default splash and about images being used. &amp;nbsp;Thanks.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;ragha-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I checked this link as it was listed in NetbeansFAQ's:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://blogs.kiyut.com/tonny/2007/10/18/customize-netbeans-platform-splash-screen-and-about-dialog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blogs.kiyut.com/tonny/2007/10/18/customize-netbeans-platform-splash-screen-and-about-dialog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;It however doesn't work for netbeans platform 6.7 app. Any clues??
&lt;br&gt;&lt;br&gt;------------------------
&lt;br&gt;Eat right, exercise, die anyway!!
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Branding-about-dialog...-tp24066965p26415381.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26344274</id>
	<title>how to change the default netbeans platform?</title>
	<published>2009-11-13T14:04:37Z</published>
	<updated>2009-11-13T14:04:37Z</updated>
	<author>
		<name>legolas</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;is it possible to select one of registered platforms as the default one instead of the ide itself?
&lt;br&gt;&lt;br&gt;&lt;br&gt;thanks</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-change-the-default-netbeans-platform--tp26344274p26344274.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26339121</id>
	<title>Netbeans startup parameters programmatically</title>
	<published>2009-11-13T08:15:10Z</published>
	<updated>2009-11-13T08:15:10Z</updated>
	<author>
		<name>Luc_B</name>
	</author>
	<content type="html">Hello Netbeans RCP users,
&lt;br&gt;&lt;br&gt;I changed my conf file to specify my own MainClass. 
&lt;br&gt;This main class then calls org.netbeans.core.startup.Main.main(String[] args);
&lt;br&gt;&lt;br&gt;My main class ask the user for its preferred language. From there it set the default locale for my application. 
&lt;br&gt;&lt;br&gt;It works fine for my own localization. I installed the autoupdate api (plugin manager) to deliver update to my client. But it is always in english. I want it to use the localized version of org-netbeans-modules-autoupdate-service.jar and &amp;nbsp;org-netbeans-modules-autoupdate-ui.jar.
&lt;br&gt;&lt;br&gt;My other language is french and I put the localized files under platform11\modules\locale.
&lt;br&gt;&lt;br&gt;But it will only switch language if I pass the command line --locale fr_CA.
&lt;br&gt;&lt;br&gt;I want to be able to set it programmatically. I tried to add an argument and pass it to the main class without success.
&lt;br&gt;&lt;br&gt;You help would be appreciated.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Luc 
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Netbeans-startup-parameters-programmatically-tp26339121p26339121.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26281507</id>
	<title>Synchronize the Properties window with Jtable</title>
	<published>2009-11-10T02:52:34Z</published>
	<updated>2009-11-10T02:52:34Z</updated>
	<author>
		<name>nadunalexander</name>
	</author>
	<content type="html">In the tutorial &lt;a href=&quot;http://platform.netbeans.org/tutorials/nbm-crud.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://platform.netbeans.org/tutorials/nbm-crud.html&lt;/a&gt;&amp;nbsp;It is described that how to synchronize the Properties with the beenTreeView selection. I need this feature with jtable. Whenever user select a row it should be editable in property sheet. Are there any way to do this? How do i communicate the jtable selection with property sheet. 
&lt;br&gt;How the beenTreeView do that? 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Note: If i can change the beenTreeView's selection programmatically then i can workaround this problem throug a hidden beenTreeView.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Synchronize-the-Properties-window-with-Jtable-tp26281507p26281507.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26216739</id>
	<title>Re: Please help me on TableTreeView and OutlineView sorting problems</title>
	<published>2009-11-05T10:24:52Z</published>
	<updated>2009-11-05T10:24:52Z</updated>
	<author>
		<name>Luc_B</name>
	</author>
	<content type="html">Turns out that the TreeTableView sorting problem was fixed in 6.8 beta.
&lt;br&gt;&lt;br&gt;Hope this can help someone.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Luc_B wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello,
&lt;br&gt;&lt;br&gt;In my program I was using the TableTreeView to display my nodes and their properties.
&lt;br&gt;&lt;br&gt;The problem I had with this component is that whenever I was sorting (clicking on headers) it would group the rows so it would only show distinct values. This but is documented but still there in NB 6.7.1.
&lt;br&gt;&lt;br&gt;So alternately, I changed my code to use the OutlineView. It seems to be buggy too.
&lt;br&gt;&lt;br&gt;Here is the code I use to force a sort on the first column.
&lt;br&gt;&lt;br&gt;//--------------------------------------------
&lt;br&gt;ETableColumnModel etcm = (ETableColumnModel) ttvPeople.getOutline().getColumnModel();
&lt;br&gt;final ETableColumn etc = (ETableColumn) etcm.getColumn(0);
&lt;br&gt;etcm.setColumnSorted(etc, true, 1);
&lt;br&gt;//------------------------------------------&amp;lt;
&lt;br&gt;&lt;br&gt;At first it works fine. But if I do another query and show new results a number one &amp;quot;1&amp;quot; is put into the header.
&lt;br&gt;&lt;img src=&quot;http://old.nabble.com/file/p26215756/Header.gif&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;The only work around I found is to remove the OulineView from its container and create a new instance of it and then put it back in.
&lt;br&gt;&lt;br&gt;I am also having a problem with this call ttvPeople.getOutline().setColumnSelectionAllowed(false);
&lt;br&gt;&lt;br&gt;This never works the second time I call it.
&lt;br&gt;&lt;br&gt;I hope I am being clear if not I would be glad to provide you with more info as needed.
&lt;br&gt;&lt;br&gt;Thank you very much,
&lt;br&gt;Luc
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-help-me-on-TableTreeView-and-OutlineView-sorting-problems-tp26215756p26216739.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26215756</id>
	<title>Please help me on TableTreeView and OutlineView sorting problems</title>
	<published>2009-11-05T07:22:39Z</published>
	<updated>2009-11-05T07:22:39Z</updated>
	<author>
		<name>Luc_B</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;In my program I was using the TableTreeView to display my nodes and their properties.
&lt;br&gt;&lt;br&gt;The problem I had with this component is that whenever I was sorting (clicking on headers) it would group the rows so it would only show distinct values. This but is documented but still there in NB 6.7.1.
&lt;br&gt;&lt;br&gt;So alternately, I changed my code to use the OutlineView. It seems to be buggy too.
&lt;br&gt;&lt;br&gt;Here is the code I use to force a sort on the first column.
&lt;br&gt;&lt;br&gt;//--------------------------------------------
&lt;br&gt;ETableColumnModel etcm = (ETableColumnModel) ttvPeople.getOutline().getColumnModel();
&lt;br&gt;final ETableColumn etc = (ETableColumn) etcm.getColumn(0);
&lt;br&gt;etcm.setColumnSorted(etc, true, 1);
&lt;br&gt;//------------------------------------------&amp;lt;
&lt;br&gt;&lt;br&gt;At first it works fine. But if I do another query and show new results a number one &amp;quot;1&amp;quot; is put into the header.
&lt;br&gt;&lt;img src=&quot;http://old.nabble.com/file/p26215756/Header.gif&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;The only work around I found is to remove the OulineView from its container and create a new instance of it and then put it back in.
&lt;br&gt;&lt;br&gt;I am also having a problem with this call ttvPeople.getOutline().setColumnSelectionAllowed(false);
&lt;br&gt;&lt;br&gt;This never works the second time I call it.
&lt;br&gt;&lt;br&gt;I hope I am being clear if not I would be glad to provide you with more info as needed.
&lt;br&gt;&lt;br&gt;Thank you very much,
&lt;br&gt;Luc
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-help-me-on-TableTreeView-and-OutlineView-sorting-problems-tp26215756p26215756.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26212544</id>
	<title>Re: Netbeans Platform and web services</title>
	<published>2009-11-05T04:04:15Z</published>
	<updated>2009-11-05T04:04:15Z</updated>
	<author>
		<name>ymajoros</name>
	</author>
	<content type="html">Still no luck: tried the code, got exceptions, ...
&lt;br&gt;&lt;br&gt;Could someone provide some sample module? This would be really nice.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Netbeans-Platform-and-web-services-tp26108942p26212544.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26204747</id>
	<title>iReport Chart</title>
	<published>2009-11-04T13:15:31Z</published>
	<updated>2009-11-04T13:15:31Z</updated>
	<author>
		<name>Niggy</name>
	</author>
	<content type="html">I have included the libraries for iReports. &amp;nbsp;When I open a jrxml file the chart does not display. &amp;nbsp;Can you help. &amp;nbsp;The error is:
&lt;br&gt;&lt;br&gt;java.lang.IllegalStateException: Problem in some module which uses Window System: Window System API is required to be called from AWT thread only, see &lt;a href=&quot;http://core.netbeans.org/proposals/threading/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://core.netbeans.org/proposals/threading/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.windows.WindowManagerImpl.warnIfNotInEDT(WindowManagerImpl.java:1532)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.windows.WindowManagerImpl.getMainWindow(WindowManagerImpl.java:156)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.jaspersoft.ireport.designer.utils.Misc.getMainFrame(Misc.java:142)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.jaspersoft.ireport.designer.utils.Misc.getMainWindow(Misc.java:133)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.jaspersoft.ireport.designer.connection.gui.PasswordDialog.askPassword(PasswordDialog.java:255)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.jaspersoft.ireport.designer.connection.JDBCConnection.getPassword(JDBCConnection.java:325)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.jaspersoft.ireport.designer.connection.JDBCConnection.getConnection(JDBCConnection.java:143)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.jaspersoft.ireport.designer.compiler.IReportCompiler.run(IReportCompiler.java:898)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:572)
&lt;br&gt;[catch] at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:997)
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/iReport-Chart-tp26204747p26204747.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26196499</id>
	<title>Extended Login Dialog/ Customizing the Login Dialog</title>
	<published>2009-11-04T05:43:07Z</published>
	<updated>2009-11-04T05:43:07Z</updated>
	<author>
		<name>Q. L. Nguyen</name>
	</author>
	<content type="html">It's possible to create a login dialog with the help of the NotifyDescriptor-class and NotifyDescriptor.Confirmation-class, respectively. However, it bothers me, that I can't create a simple dialog without any of the given buttons (&amp;quot;Yes&amp;quot;, &amp;quot;No&amp;quot;, &amp;quot;Cancel&amp;quot;). For my login dialog I just want two inputfields and two buttons (&amp;quot;Name&amp;quot;, &amp;quot;Password&amp;quot;).
&lt;br&gt;&lt;br&gt;Is the only possibility to use the SwingLab-lib?
&lt;br&gt;&lt;br&gt;It would be great, if I could give the whole login-frame or, at least, the main panel of the dialog as an input instead of just the &amp;quot;green&amp;quot; panel, that I outlined below:
&lt;br&gt;&lt;br&gt;&lt;img src=&quot;http://old.nabble.com/file/p26196499/logindialognabble.png&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Extended-Login-Dialog--Customizing-the-Login-Dialog-tp26196499p26196499.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26160056</id>
	<title>Re: Own localised module .jar (Not talking about bundle.prop here)</title>
	<published>2009-11-03T02:40:54Z</published>
	<updated>2009-11-03T02:40:54Z</updated>
	<author>
		<name>rogge-peter</name>
	</author>
	<content type="html">Hi Carlos,
&lt;br&gt;in the article &lt;a href=&quot;http://netbeans.dzone.com/news/netbeans-platform-romanian&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;NetBeans Platform Speaks Romanian&lt;/a&gt;&amp;nbsp;Joseki Bold speaks about localization NetBeans Platform in your own language. Perhaps you can find there more informations about your question?
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;cseguin wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello there,
&lt;br&gt;&lt;br&gt;is it possible to create our own localised module and add it to the platform?
&lt;br&gt;&lt;br&gt;Let's say that I want to localise a part of netbeans to work on a language not yet implemented by the platform.
&lt;br&gt;&lt;br&gt;If I create the module with its bundles etc, when I added it to the correspondent locale folder and then run netbeans the platform crashes 'cause that's not recognise the pre fix of the .jar. (of the type of _es, _de...)
&lt;br&gt;&lt;br&gt;Is it possible to add a new prefix somewhere?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;div class=&quot;signature&quot;&gt;Greetings
&lt;br&gt;Peter
&lt;br&gt;&lt;br&gt;Have a look on &lt;a href=&quot;https://multilingual.dev.java.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;MultiLingual with NetBeans 6.7&lt;/a&gt;.
&lt;br&gt;10.25.2009: MultiLingual is in the interview &amp;quot;&lt;a href=&quot;http://netbeans.dzone.com/multilingual-netbeans-platform-applications&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help for Multilingual NetBeans Platform Applications&lt;/a&gt;&amp;quot; with &lt;a href=&quot;http://blogs.sun.com/geertjan/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geertjan Wielenga&lt;/a&gt;&amp;nbsp;in &lt;a href=&quot;http://netbeans.dzone.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;NetBeans Zone&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Do you know &lt;a href=&quot;http://kenai.com/projects/abclist/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ABC-List&lt;/a&gt;?
&lt;br&gt;ABC-List is a &amp;quot;thought tool&amp;quot; by &lt;a href=&quot;http://www.birkenbihl.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Vera F. Birkenbihl&lt;/a&gt;.&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Own-localised-module-.jar-%28Not-talking-about-bundle.prop-here%29-tp26117578p26160056.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26157817</id>
	<title>Removing things</title>
	<published>2009-11-02T12:31:59Z</published>
	<updated>2009-11-02T12:31:59Z</updated>
	<author>
		<name>JoãoS</name>
	</author>
	<content type="html">Hi guys
&lt;br&gt;&lt;br&gt;Since my application have only one window is there a way to remove these two things that are inside the red circle of the example picture? 
&lt;br&gt;&amp;nbsp;&lt;img src=&quot;http://old.nabble.com/file/p26157817/02-11-2009%2B18-25-52.jpg&quot; border=&quot;0&quot; /&gt;&lt;br&gt;&lt;br&gt;Another question: How can i make my application disapear from the task bar and go to the system tray and then when i click on the system tray icon the application is restored?
&lt;br&gt;&lt;br&gt;Sorry for the bad english.
&lt;br&gt;&lt;br&gt;Cheers</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Removing-things-tp26157817p26157817.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26163545</id>
	<title>fixing the size of TopComponent</title>
	<published>2009-11-02T05:11:26Z</published>
	<updated>2009-11-02T05:11:26Z</updated>
	<author>
		<name>Ashaf</name>
	</author>
	<content type="html">Thanks for the reply Marek. I have customized it by following the procedure given in Window System API screencast video, wherein we open a topcomponent undock it and fix it to the position we want, close the application and copy the anonymous mode files created in the testuserdir.
&lt;br&gt;&lt;br&gt;I would like to know more about changing the mode container to modified JFrame or JDialogue, coz i have never done it. Is it like creating a JDialogue with a topcomponent inside??
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/fixing-the-size-of-TopComponent-tp26163545p26163545.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26162990</id>
	<title>Re: fixing the size of TopComponent</title>
	<published>2009-11-02T04:24:39Z</published>
	<updated>2009-11-02T04:24:39Z</updated>
	<author>
		<name>Marek Slama</name>
	</author>
	<content type="html">Ashaf wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi everyone,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have a TopComponent with three panels inside.. i have customized a mode
&lt;br&gt;&amp;gt; viz undocked and exhibits modal behavior. Sometimes when i run my App, the
&lt;br&gt;&amp;gt; TopComponent size shrinks down to minimum(like a JDialogue) and the biggest
&lt;br&gt;&amp;gt; problem is when i try to run the application in other machine probably
&lt;br&gt;&amp;gt; having different resolution, the window sometimes is too small to display
&lt;br&gt;&amp;gt; all the panels and components inside it.
&lt;br&gt;&amp;gt; My requirement is i need the window size to be fixed relative to screen
&lt;br&gt;&amp;gt; resolution and user should not be able to shrink or resize it, in the sense
&lt;br&gt;&amp;gt; atleast panels inside the window should be visible. Can anybody plz help me
&lt;br&gt;&amp;gt; out?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Ashraf
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;I think you need to change mode container to be modified JFrame (without 
&lt;br&gt;resize) or
&lt;br&gt;JDialog? How did you customize it so far?
&lt;br&gt;&lt;br&gt;Marek
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/fixing-the-size-of-TopComponent-tp26156689p26162990.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26162965</id>
	<title>Strange GUI Builder behavior</title>
	<published>2009-11-02T04:23:01Z</published>
	<updated>2009-11-02T04:23:01Z</updated>
	<author>
		<name>theophil</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks for the fast replies! Quintin got it right, the problem occurs if you copy/paste your panels and forms from one package to another. In my case, I copied them from a different module and the forms were not updated correctly.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;As Quintin said, the whole thing is still very buggy. Here are some points I noticed:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- One problem is that the &amp;quot;bundle&amp;quot; attribute in the &amp;lt;ResourceString&amp;gt; element isn't updated, it still holds the path to the &amp;quot;old&amp;quot; Bundle.properties file. Obviously, that property is overriden somewhere, because I had removed the old module from the module suite, thus making it inaccessible. As the old module still existed, I renamed the old file to make sure my new Panel was using the Bundle.properties in its package.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- Adding new labels to the panel is no problem. The correct bundle file is updated and referenced in the form.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;- If you change the variable name through the properties window (in the 'Code' tab), the form gets updated as well. It changes the name of the component and makes the bundle path point to the new Bundle.properties. The problem is that the key in that properties file isn't updated, resulting in a MissingResourceException.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;@Quintin : 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;You said the copy/paste was known to be buggy, did someone already file a bug? If not, should I do it?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;In my case, the original Bundle file was never updated, probably because it was in another module and yours was in another package in the same module.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;If I copy/paste the whole form by hand, as you proposed, I'm still stuck with a similar problem, as my new bundle file won't be updated if I make changes to 'old' components (even after changing all my ResourceString properties by hand...)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;I haven't tried this within the same package, but my guess is that it won't do nothing, as you're probably still referencing the same resource bundle. (whereas with localized bundles, this could be a problem)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;@Tomas
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The path to the bundle file is displayed and valid. I could send you some code, but the whole thing is pretty easy to reproduce (see above). 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Philippe
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Strange-GUI-Builder-behavior-tp26131016p26162965.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26156689</id>
	<title>fixing the size of TopComponent</title>
	<published>2009-11-02T04:00:38Z</published>
	<updated>2009-11-02T04:00:38Z</updated>
	<author>
		<name>Ashaf</name>
	</author>
	<content type="html">Hi everyone,
&lt;br&gt;&lt;br&gt;I have a TopComponent with three panels inside.. i have customized a mode viz undocked and exhibits modal behavior. Sometimes when i run my App, the TopComponent size shrinks down to minimum(like a JDialogue) and the biggest problem is when i try to run the application in other machine probably having different resolution, the window sometimes is too small to display all the panels and components inside it.
&lt;br&gt;My requirement is i need the window size to be fixed relative to screen resolution and user should not be able to shrink or resize it, in the sense atleast panels inside the window should be visible. Can anybody plz help me out?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Ashraf</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/fixing-the-size-of-TopComponent-tp26156689p26156689.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26161814</id>
	<title>Re: Re: Tables</title>
	<published>2009-11-02T02:38:34Z</published>
	<updated>2009-11-02T02:38:34Z</updated>
	<author>
		<name>Florian Brunner</name>
	</author>
	<content type="html">As far as I know, it doesn't. That's why I ended up with JXTable (SwingX).
&lt;br&gt;&lt;br&gt;-Florian
&lt;br&gt;&lt;br&gt;Quintin Beukes schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Does TreeTableView support hiding the first column?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Quintin Beukes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Nov 2, 2009 at 12:16 PM, Florian Brunner &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161814&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fbrunnerlist@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161814&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fbrunnerlist@...&lt;/a&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Yes, I also had problems with TableView. I could instantiate it,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; but it behaved strangly. I filed an issue. Please vote for it &amp;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; add a comment:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.netbeans.org/issues/show_bug.cgi?id=154359&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/issues/show_bug.cgi?id=154359&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; -Florian
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Quintin Beukes schrieb:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hey,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I found a component called TableView. Though through extensive
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; google/codesearch and a lot of trying, I can't even
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; instantiate it.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Can anyone perhaps explain to me how I should use this? How
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; the nodes should be structured, how the table model fits in? I
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tried making table models that return raw values, properties
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; by row/column, properties by node/property, everything I could
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; think of. I can't even get it to load. It just ends up in an
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AssertionException.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Any help would be appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Quintin Beukes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; On Sun, Nov 1, 2009 at 12:21 AM, Quintin Beukes
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161814&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161814&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161814&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161814&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt;&amp;gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Hey,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I'm looking for a way to display tabular data in the explorer.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What I want to do is the following:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1. Have data items (which are object instances)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2. Display each item as a row, with selected properties in
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; columns
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3. Have an action item like a button in another column
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4. Be able to link this with property sheets. For ex. you
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; double
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;click it and a property view pops up to the left. The property
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sheet will then display more information, as well as listen for
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;services to provide extra information related to this entity.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I would like to refrain from standard JTables, so I can
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hook into
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;the NB explorer/nodes api a bit better.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I heard of a tree table, which, as I understand it is the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; explorer
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;API view on nodes, but displayed in a table. This sounds
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fine, as
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I would then only have root nodes to display one level data?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Quintin Beukes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tables-tp26146458p26161814.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26161711</id>
	<title>Re: Re: Tables</title>
	<published>2009-11-02T02:29:03Z</published>
	<updated>2009-11-02T02:29:03Z</updated>
	<author>
		<name>Quintin Beukes-2</name>
	</author>
	<content type="html">Does TreeTableView support hiding the first column?&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;Quintin Beukes&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 2, 2009 at 12:16 PM, Florian Brunner &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161711&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fbrunnerlist@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;

Yes, I also had problems with TableView. I could instantiate it, but it behaved strangly. I filed an issue. Please vote for it &amp;amp; add a comment:&lt;br&gt;
&lt;a href=&quot;http://www.netbeans.org/issues/show_bug.cgi?id=154359&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/issues/show_bug.cgi?id=154359&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
-Florian&lt;br&gt;
&lt;br&gt;
Quintin Beukes schrieb:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;&lt;div class=&quot;im&quot;&gt;
Hey,&lt;br&gt;
&lt;br&gt;
I found a component called TableView. Though through extensive google/codesearch and a lot of trying, I can&amp;#39;t even instantiate it. &lt;br&gt;
Can anyone perhaps explain to me how I should use this? How the nodes should be structured, how the table model fits in? I tried making table models that return raw values, properties by row/column, properties by node/property, everything I could think of. I can&amp;#39;t even get it to load. It just ends up in an AssertionException.&lt;br&gt;


&lt;br&gt;
Any help would be appreciated.&lt;br&gt;
&lt;br&gt;
Quintin Beukes&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;/div&gt;&lt;div class=&quot;im&quot;&gt;
On Sun, Nov 1, 2009 at 12:21 AM, Quintin Beukes &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161711&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161711&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt;&amp;gt;&amp;gt; wrote:&lt;br&gt;


&lt;br&gt;
    Hey,&lt;br&gt;
&lt;br&gt;
    I&amp;#39;m looking for a way to display tabular data in the explorer.&lt;br&gt;
&lt;br&gt;
    What I want to do is the following:&lt;br&gt;
    1. Have data items (which are object instances)&lt;br&gt;
    2. Display each item as a row, with selected properties in columns&lt;br&gt;
    3. Have an action item like a button in another column&lt;br&gt;
    4. Be able to link this with property sheets. For ex. you double&lt;br&gt;
    click it and a property view pops up to the left. The property&lt;br&gt;
    sheet will then display more information, as well as listen for&lt;br&gt;
    services to provide extra information related to this entity.&lt;br&gt;
&lt;br&gt;
    I would like to refrain from standard JTables, so I can hook into&lt;br&gt;
    the NB explorer/nodes api a bit better.&lt;br&gt;
&lt;br&gt;
    I heard of a tree table, which, as I understand it is the explorer&lt;br&gt;
    API view on nodes, but displayed in a table. This sounds fine, as&lt;br&gt;
    I would then only have root nodes to display one level data?&lt;br&gt;
&lt;br&gt;
    Quintin Beukes&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tables-tp26146458p26161711.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26161533</id>
	<title>Re: Re: Tables</title>
	<published>2009-11-02T02:16:00Z</published>
	<updated>2009-11-02T02:16:00Z</updated>
	<author>
		<name>Florian Brunner</name>
	</author>
	<content type="html">Yes, I also had problems with TableView. I could instantiate it, but it 
&lt;br&gt;behaved strangly. I filed an issue. Please vote for it &amp; add a comment:
&lt;br&gt;&lt;a href=&quot;http://www.netbeans.org/issues/show_bug.cgi?id=154359&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/issues/show_bug.cgi?id=154359&lt;/a&gt;&lt;br&gt;&lt;br&gt;-Florian
&lt;br&gt;&lt;br&gt;Quintin Beukes schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hey,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I found a component called TableView. Though through extensive 
&lt;br&gt;&amp;gt; google/codesearch and a lot of trying, I can't even instantiate it. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can anyone perhaps explain to me how I should use this? How the nodes 
&lt;br&gt;&amp;gt; should be structured, how the table model fits in? I tried making 
&lt;br&gt;&amp;gt; table models that return raw values, properties by row/column, 
&lt;br&gt;&amp;gt; properties by node/property, everything I could think of. I can't even 
&lt;br&gt;&amp;gt; get it to load. It just ends up in an AssertionException.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help would be appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Quintin Beukes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Sun, Nov 1, 2009 at 12:21 AM, Quintin Beukes &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161533&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26161533&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Hey,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I'm looking for a way to display tabular data in the explorer.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; What I want to do is the following:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 1. Have data items (which are object instances)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 2. Display each item as a row, with selected properties in columns
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 3. Have an action item like a button in another column
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; 4. Be able to link this with property sheets. For ex. you double
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; click it and a property view pops up to the left. The property
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; sheet will then display more information, as well as listen for
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; services to provide extra information related to this entity.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I would like to refrain from standard JTables, so I can hook into
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; the NB explorer/nodes api a bit better.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I heard of a tree table, which, as I understand it is the explorer
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; API view on nodes, but displayed in a table. This sounds fine, as
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I would then only have root nodes to display one level data?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Quintin Beukes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tables-tp26146458p26161533.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26159648</id>
	<title>Re: AW: NB Application build by maven and 'may be multiply loaded by modules'</title>
	<published>2009-11-02T00:23:08Z</published>
	<updated>2009-11-02T00:23:08Z</updated>
	<author>
		<name>mkleint-3</name>
	</author>
	<content type="html">Kutschera Peter wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello Milos!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for your answer - I got it running the extArtifacts-module way.
&lt;br&gt;&amp;gt; This solution will be good enough for short time usage.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But if I understood this correctly writing a new module for an existing
&lt;br&gt;&amp;gt; application (Which should be possible to the users of my application) would
&lt;br&gt;&amp;gt; need knowledge about the implementation details (= libraries already used by
&lt;br&gt;&amp;gt; all other modules of the application).
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;no necessarily. The first warning you got:
&lt;br&gt;&lt;br&gt;WARNUNG [org.netbeans.core.startup.NbEvents]: The extension ..x-api-1.0-SNAPSHOT.jar may be multiply loaded by modules: [...-xfilesupport.jar, ...-xfileviewer.jar]; see: &lt;a href=&quot;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide/modules/doc-files/classpath.html#class-path&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide/modules/doc-files/classpath.html#class-path&lt;/a&gt;&lt;br&gt;&lt;br&gt;states that one physical jar file is being used by 2 modules. That in 
&lt;br&gt;general is not that much of a problem, given 
&lt;br&gt;1. both point to the same binary (most probably they do for maven 
&lt;br&gt;dependencies which have version encoded) and
&lt;br&gt;2. none is exposing them as public API, only keeps them private. (eg if 
&lt;br&gt;you have jar A embedded in module AA and AB with exposed packages, then 
&lt;br&gt;if module BC depends both on AA and AB, you get a problem)
&lt;br&gt;3. the classes in library jar don't do some weird classpath discovery 
&lt;br&gt;magic..
&lt;br&gt;unlike maven dependencies, netbeans module runtime dependencies are not 
&lt;br&gt;transitive.
&lt;br&gt;&lt;br&gt;Please note that you might get a problem with manipulating the module 
&lt;br&gt;system though. Like removing/updating modules. the upgrading of module 
&lt;br&gt;AA along with upgrading the library A to new version, might result in 
&lt;br&gt;deleting the old A and adding new version of A binary. Leaving AB module 
&lt;br&gt;with no A it knows about..
&lt;br&gt;&lt;br&gt;I guess we should fix the problem by appending the originating module to 
&lt;br&gt;the ext/A.jar -&amp;gt; ext/AA/A.jar vs ext/AB/A.jar in the Class-Path manifest 
&lt;br&gt;entry. Please file an issue with reagrd to the problem under:
&lt;br&gt;&lt;a href=&quot;http://jira.codehaus.org/browse/MNBMODULE&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.codehaus.org/browse/MNBMODULE&lt;/a&gt;&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; This is relative strait forward for application specific things (x-api and
&lt;br&gt;&amp;gt; x-impl in this case, which are explicitly exposed), but by transitive
&lt;br&gt;&amp;gt; dependencies some things like special swing elements (JCalendar in my case)
&lt;br&gt;&amp;gt; are used.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The JCalendar is not exposed as public package.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If someone writes a new module and is also using JCalendar, what will
&lt;br&gt;&amp;gt; happen?
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;to get any kind of problem they would have to put their module in the 
&lt;br&gt;same cluster and have the same name of the jcalendar jar binary on their 
&lt;br&gt;Class-Path:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; &amp;nbsp;He can not use the JCalendar already in the classpath since this package is
&lt;br&gt;&amp;gt; not exposed.
&lt;br&gt;&amp;gt; &amp;nbsp;He can not add the JCalendar since he will run in the classpath-problem.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;Not in most cases as described above.
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Is this correct?
&lt;br&gt;&amp;gt; Are there any &amp;quot;best practice&amp;quot; documents out there?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; BTW: NB 6.8Beta using moduleArchetype 1.2 generated a
&lt;br&gt;&amp;gt; nbm-plugin-configuration version 3.1 with module.xml (which is stated as
&lt;br&gt;&amp;gt; obsolete for version 3.0+ and contains only some license information).
&lt;br&gt;&amp;gt; I added some 
&lt;br&gt;&amp;gt; &amp;lt;publicPackages&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;publicPackage&amp;gt;...x_api&amp;lt;/publicPackage&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;publicPackage&amp;gt;...x_impl&amp;lt;/publicPackage&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;More packages...
&lt;br&gt;&amp;gt; &amp;lt;/publicPackages&amp;gt;
&lt;br&gt;&amp;gt; lines, which I could not found on &lt;a href=&quot;http://mojo.codehaus.org/nbm-maven-plugin/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mojo.codehaus.org/nbm-maven-plugin/&lt;/a&gt;&lt;br&gt;&amp;gt; but by reading some pom.xml from some open source projects.
&lt;br&gt;&amp;gt; (There is only a short notice in the last paragraph of
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://mojo.codehaus.org/nbm-maven-plugin/2630upgrade.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mojo.codehaus.org/nbm-maven-plugin/2630upgrade.html&lt;/a&gt;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is this the correct way to expose the public packages?
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;I suppose so. The ultimate check is to examine the resulting module 
&lt;br&gt;jar's generated manifest entries.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Milos
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Well, again, thanks for your time and answer
&lt;br&gt;&amp;gt; &amp;nbsp;Peter
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Ursprüngliche Nachricht-----
&lt;br&gt;&amp;gt; Von: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26159648&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Milos.Kleint@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26159648&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Milos.Kleint@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt; Gesendet: Montag, 02. November 2009 07:59
&lt;br&gt;&amp;gt; An: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26159648&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Betreff: Re: [openide-dev] NB Application build by maven and 'may be
&lt;br&gt;&amp;gt; multiply loaded by modules'
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kutschera Peter wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hello out there!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I just got an 'interesting' problem when running my maven-generated NB
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; Application.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; I found a lot of information about this problem and NOT maven-based
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; applications on the internet, but not for maven-based projects.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; My problem is as follows:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; There are two mvn artifacts x-api and x-impl, where x-impl depends on
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; x-api. Both of them are outside netbeans.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Now I have a NB RCP Application with two modules:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;xfilesupport (depending on x-impl)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;xfileviewer &amp;nbsp;(depending on x-impl)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When starting the application I get a lot of warnings for x-impl, x-api
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; and all artefacts x-impl and x-api are depending on.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; WARNUNG [org.netbeans.core.startup.NbEvents]: The extension
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; ..x-api-1.0-SNAPSHOT.jar may be multiply loaded by modules:
&lt;br&gt;&amp;gt; [...-xfilesupport.jar, ...-xfileviewer.jar]; see:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide&lt;/a&gt;&lt;br&gt;&amp;gt; /modules/doc-files/classpath.html#class-path
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; It seems to me this link is non-maven specific, I am not sure if and how I
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; can use this in information.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; The interesting thing is that both, xfilesupport and xfileviewer depends
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; on e.g. org-openide-util but there are no warnings about the
&lt;br&gt;&amp;gt; org-openide-util artefact. 
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; I tried the following:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;Since xfileviewer depends on xfilesupport I removed the direct dependency
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; to x-impl in pom.xml. 
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;There is NO dependency to x-api in the pom.xml!
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;This results in 
&lt;br&gt;&amp;gt;&amp;gt; Adding on module's Class-Path:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; ..x-api:jar:1.0-SNAPSHOT
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; .. some artefacts x-api depends on ..
&lt;br&gt;&amp;gt;&amp;gt; Private classes referenced from module: [...x_impl.SomeClassImpl]
&lt;br&gt;&amp;gt;&amp;gt; [ERROR]Project depends on packages not accessible at runtime in module
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; ...xfilesupport:jar:1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; That's the core of the problem. If you depend on a module, that module 
&lt;br&gt;&amp;gt; need to expose public packages. Even for external classpath items it 
&lt;br&gt;&amp;gt; ships with.
&lt;br&gt;&amp;gt; So either xfilesupport needs to expose the packages from the x-impl, or 
&lt;br&gt;&amp;gt; have a separate module for the x-impl binary that will expose the api 
&lt;br&gt;&amp;gt; packages. In either case the api packages config is done as part of the 
&lt;br&gt;&amp;gt; nbm-maven-plugin configuration.
&lt;br&gt;&amp;gt; please check the Maven Dependency vs NetBeans runtime dependency section 
&lt;br&gt;&amp;gt; in &lt;a href=&quot;http://mojo.codehaus.org/nbm-maven-plugin/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mojo.codehaus.org/nbm-maven-plugin/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Milos
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; So what can I do?
&lt;br&gt;&amp;gt;&amp;gt; * Should I add the x-impl and x-api packages as public packages to
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; xfilesupport?
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; * I already tried to move all dependencies to external artifacts in one
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; nbm &amp;quot;extArtifacts&amp;quot; and depending on this in my other nbms, but this did not
&lt;br&gt;&amp;gt; help, but maybe IU did something wrong, I am sot sure about this.
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; * And I don't want to put all of my code within 1 (one) nbm, but this
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; seems to be the next thing to try on monday morning :-(
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Any help will be welcome.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks in advance and have a nice weekend
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;Peter Kutschera
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NB-Application-build-by-maven-and-%27may-be-multiply-loaded-by-modules%27-tp26131606p26159648.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26159501</id>
	<title>AW: NB Application build by maven and 'may be multiply loaded by modules'</title>
	<published>2009-11-02T00:06:17Z</published>
	<updated>2009-11-02T00:06:17Z</updated>
	<author>
		<name>Kutschera Peter-2</name>
	</author>
	<content type="html">Hello Milos!
&lt;br&gt;&lt;br&gt;Thanks for your answer - I got it running the extArtifacts-module way.
&lt;br&gt;This solution will be good enough for short time usage.
&lt;br&gt;&lt;br&gt;But if I understood this correctly writing a new module for an existing
&lt;br&gt;application (Which should be possible to the users of my application) would
&lt;br&gt;need knowledge about the implementation details (= libraries already used by
&lt;br&gt;all other modules of the application).
&lt;br&gt;&lt;br&gt;This is relative strait forward for application specific things (x-api and
&lt;br&gt;x-impl in this case, which are explicitly exposed), but by transitive
&lt;br&gt;dependencies some things like special swing elements (JCalendar in my case)
&lt;br&gt;are used.
&lt;br&gt;&lt;br&gt;The JCalendar is not exposed as public package.
&lt;br&gt;&lt;br&gt;If someone writes a new module and is also using JCalendar, what will
&lt;br&gt;happen?
&lt;br&gt;&amp;nbsp;He can not use the JCalendar already in the classpath since this package is
&lt;br&gt;not exposed.
&lt;br&gt;&amp;nbsp;He can not add the JCalendar since he will run in the classpath-problem.
&lt;br&gt;&lt;br&gt;Is this correct?
&lt;br&gt;Are there any &amp;quot;best practice&amp;quot; documents out there?
&lt;br&gt;&lt;br&gt;&lt;br&gt;BTW: NB 6.8Beta using moduleArchetype 1.2 generated a
&lt;br&gt;nbm-plugin-configuration version 3.1 with module.xml (which is stated as
&lt;br&gt;obsolete for version 3.0+ and contains only some license information).
&lt;br&gt;I added some 
&lt;br&gt;&amp;lt;publicPackages&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;publicPackage&amp;gt;...x_api&amp;lt;/publicPackage&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;publicPackage&amp;gt;...x_impl&amp;lt;/publicPackage&amp;gt;
&lt;br&gt;&amp;nbsp;More packages...
&lt;br&gt;&amp;lt;/publicPackages&amp;gt;
&lt;br&gt;lines, which I could not found on &lt;a href=&quot;http://mojo.codehaus.org/nbm-maven-plugin/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mojo.codehaus.org/nbm-maven-plugin/&lt;/a&gt;&lt;br&gt;but by reading some pom.xml from some open source projects.
&lt;br&gt;(There is only a short notice in the last paragraph of
&lt;br&gt;&lt;a href=&quot;http://mojo.codehaus.org/nbm-maven-plugin/2630upgrade.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mojo.codehaus.org/nbm-maven-plugin/2630upgrade.html&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;Is this the correct way to expose the public packages?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Well, again, thanks for your time and answer
&lt;br&gt;&amp;nbsp;Peter
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Ursprüngliche Nachricht-----
&lt;br&gt;Von: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26159501&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Milos.Kleint@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26159501&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Milos.Kleint@...&lt;/a&gt;] 
&lt;br&gt;Gesendet: Montag, 02. November 2009 07:59
&lt;br&gt;An: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26159501&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev@...&lt;/a&gt;
&lt;br&gt;Betreff: Re: [openide-dev] NB Application build by maven and 'may be
&lt;br&gt;multiply loaded by modules'
&lt;br&gt;&lt;br&gt;Kutschera Peter wrote:
&lt;br&gt;&amp;gt; Hello out there!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I just got an 'interesting' problem when running my maven-generated NB
&lt;br&gt;Application.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I found a lot of information about this problem and NOT maven-based
&lt;br&gt;applications on the internet, but not for maven-based projects.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My problem is as follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; There are two mvn artifacts x-api and x-impl, where x-impl depends on
&lt;br&gt;x-api. Both of them are outside netbeans.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now I have a NB RCP Application with two modules:
&lt;br&gt;&amp;gt; &amp;nbsp;xfilesupport (depending on x-impl)
&lt;br&gt;&amp;gt; &amp;nbsp;xfileviewer &amp;nbsp;(depending on x-impl)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When starting the application I get a lot of warnings for x-impl, x-api
&lt;br&gt;and all artefacts x-impl and x-api are depending on.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; WARNUNG [org.netbeans.core.startup.NbEvents]: The extension
&lt;br&gt;..x-api-1.0-SNAPSHOT.jar may be multiply loaded by modules:
&lt;br&gt;[...-xfilesupport.jar, ...-xfileviewer.jar]; see:
&lt;br&gt;&lt;a href=&quot;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide&lt;/a&gt;&lt;br&gt;/modules/doc-files/classpath.html#class-path
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It seems to me this link is non-maven specific, I am not sure if and how I
&lt;br&gt;can use this in information.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The interesting thing is that both, xfilesupport and xfileviewer depends
&lt;br&gt;on e.g. org-openide-util but there are no warnings about the
&lt;br&gt;org-openide-util artefact. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I tried the following:
&lt;br&gt;&amp;gt; &amp;nbsp;Since xfileviewer depends on xfilesupport I removed the direct dependency
&lt;br&gt;to x-impl in pom.xml. 
&lt;br&gt;&amp;gt; &amp;nbsp;There is NO dependency to x-api in the pom.xml!
&lt;br&gt;&amp;gt; &amp;nbsp;This results in 
&lt;br&gt;&amp;gt; Adding on module's Class-Path:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ..x-api:jar:1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; .. some artefacts x-api depends on ..
&lt;br&gt;&amp;gt; Private classes referenced from module: [...x_impl.SomeClassImpl]
&lt;br&gt;&amp;gt; [ERROR]Project depends on packages not accessible at runtime in module
&lt;br&gt;...xfilesupport:jar:1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;That's the core of the problem. If you depend on a module, that module 
&lt;br&gt;need to expose public packages. Even for external classpath items it 
&lt;br&gt;ships with.
&lt;br&gt;So either xfilesupport needs to expose the packages from the x-impl, or 
&lt;br&gt;have a separate module for the x-impl binary that will expose the api 
&lt;br&gt;packages. In either case the api packages config is done as part of the 
&lt;br&gt;nbm-maven-plugin configuration.
&lt;br&gt;please check the Maven Dependency vs NetBeans runtime dependency section 
&lt;br&gt;in &lt;a href=&quot;http://mojo.codehaus.org/nbm-maven-plugin/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mojo.codehaus.org/nbm-maven-plugin/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Milos
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; So what can I do?
&lt;br&gt;&amp;gt; * Should I add the x-impl and x-api packages as public packages to
&lt;br&gt;xfilesupport?
&lt;br&gt;&amp;gt; * I already tried to move all dependencies to external artifacts in one
&lt;br&gt;nbm &amp;quot;extArtifacts&amp;quot; and depending on this in my other nbms, but this did not
&lt;br&gt;help, but maybe IU did something wrong, I am sot sure about this.
&lt;br&gt;&amp;gt; * And I don't want to put all of my code within 1 (one) nbm, but this
&lt;br&gt;seems to be the next thing to try on monday morning :-(
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help will be welcome.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks in advance and have a nice weekend
&lt;br&gt;&amp;gt; &amp;nbsp;Peter Kutschera
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (5K) &lt;a href=&quot;http://old.nabble.com/attachment/26159501/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NB-Application-build-by-maven-and-%27may-be-multiply-loaded-by-modules%27-tp26131606p26159501.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26159035</id>
	<title>Re: NB Application build by maven and 'may be multiply loaded by modules'</title>
	<published>2009-11-01T22:58:39Z</published>
	<updated>2009-11-01T22:58:39Z</updated>
	<author>
		<name>mkleint-3</name>
	</author>
	<content type="html">Kutschera Peter wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello out there!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I just got an 'interesting' problem when running my maven-generated NB Application.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I found a lot of information about this problem and NOT maven-based applications on the internet, but not for maven-based projects.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My problem is as follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; There are two mvn artifacts x-api and x-impl, where x-impl depends on x-api. Both of them are outside netbeans.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now I have a NB RCP Application with two modules:
&lt;br&gt;&amp;gt; &amp;nbsp;xfilesupport (depending on x-impl)
&lt;br&gt;&amp;gt; &amp;nbsp;xfileviewer &amp;nbsp;(depending on x-impl)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When starting the application I get a lot of warnings for x-impl, x-api and all artefacts x-impl and x-api are depending on.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; WARNUNG [org.netbeans.core.startup.NbEvents]: The extension ..x-api-1.0-SNAPSHOT.jar may be multiply loaded by modules: [...-xfilesupport.jar, ...-xfileviewer.jar]; see: &lt;a href=&quot;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide/modules/doc-files/classpath.html#class-path&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.netbeans.org/download/dev/javadoc/org-openide-modules/org/openide/modules/doc-files/classpath.html#class-path&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It seems to me this link is non-maven specific, I am not sure if and how I can use this in information.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The interesting thing is that both, xfilesupport and xfileviewer depends on e.g. org-openide-util but there are no warnings about the org-openide-util artefact. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I tried the following:
&lt;br&gt;&amp;gt; &amp;nbsp;Since xfileviewer depends on xfilesupport I removed the direct dependency to x-impl in pom.xml. 
&lt;br&gt;&amp;gt; &amp;nbsp;There is NO dependency to x-api in the pom.xml!
&lt;br&gt;&amp;gt; &amp;nbsp;This results in 
&lt;br&gt;&amp;gt; Adding on module's Class-Path:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ..x-api:jar:1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; .. some artefacts x-api depends on ..
&lt;br&gt;&amp;gt; Private classes referenced from module: [...x_impl.SomeClassImpl]
&lt;br&gt;&amp;gt; [ERROR]Project depends on packages not accessible at runtime in module ...xfilesupport:jar:1.0-SNAPSHOT
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;That's the core of the problem. If you depend on a module, that module 
&lt;br&gt;need to expose public packages. Even for external classpath items it 
&lt;br&gt;ships with.
&lt;br&gt;So either xfilesupport needs to expose the packages from the x-impl, or 
&lt;br&gt;have a separate module for the x-impl binary that will expose the api 
&lt;br&gt;packages. In either case the api packages config is done as part of the 
&lt;br&gt;nbm-maven-plugin configuration.
&lt;br&gt;please check the Maven Dependency vs NetBeans runtime dependency section 
&lt;br&gt;in &lt;a href=&quot;http://mojo.codehaus.org/nbm-maven-plugin/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mojo.codehaus.org/nbm-maven-plugin/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Milos
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; So what can I do?
&lt;br&gt;&amp;gt; * Should I add the x-impl and x-api packages as public packages to xfilesupport?
&lt;br&gt;&amp;gt; * I already tried to move all dependencies to external artifacts in one nbm &amp;quot;extArtifacts&amp;quot; and depending on this in my other nbms, but this did not help, but maybe IU did something wrong, I am sot sure about this.
&lt;br&gt;&amp;gt; * And I don't want to put all of my code within 1 (one) nbm, but this seems to be the next thing to try on monday morning :-(
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help will be welcome.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks in advance and have a nice weekend
&lt;br&gt;&amp;gt; &amp;nbsp;Peter Kutschera
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NB-Application-build-by-maven-and-%27may-be-multiply-loaded-by-modules%27-tp26131606p26159035.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26156033</id>
	<title>File Type Integration Tutorial</title>
	<published>2009-11-01T22:06:15Z</published>
	<updated>2009-11-01T22:06:15Z</updated>
	<author>
		<name>rogge-peter</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;I try the tutorial &lt;a href=&quot;http://platform.netbeans.org/tutorials/nbm-filetype.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;File Type Integration Tutorial&lt;/a&gt;. It's work well.
&lt;br&gt;&lt;br&gt;Additional I take the roar-action in the menu and toolbar.
&lt;br&gt;Thats work well, if I (not) select an abc-node in the explorerview. The roar-action is appropriate enabled.true / -.false.
&lt;br&gt;But if I have different files open in the editor area and I selected an abc-TC, the roar-action doesn't switch to enabled.true.
&lt;br&gt;&lt;br&gt;How can I do, that the roar-action switch between enabled.true / -.false if I select different TC's (abc-TC, Option-TC, Properties-TC, etc.)?
&lt;br&gt;&lt;div class=&quot;signature&quot;&gt;Greetings
&lt;br&gt;Peter
&lt;br&gt;&lt;br&gt;Have a look on &lt;a href=&quot;https://multilingual.dev.java.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;MultiLingual with NetBeans 6.7&lt;/a&gt;.
&lt;br&gt;10.25.2009: MultiLingual is in the interview &amp;quot;&lt;a href=&quot;http://netbeans.dzone.com/multilingual-netbeans-platform-applications&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Help for Multilingual NetBeans Platform Applications&lt;/a&gt;&amp;quot; with &lt;a href=&quot;http://blogs.sun.com/geertjan/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Geertjan Wielenga&lt;/a&gt;&amp;nbsp;in &lt;a href=&quot;http://netbeans.dzone.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;NetBeans Zone&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Do you know &lt;a href=&quot;http://kenai.com/projects/abclist/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ABC-List&lt;/a&gt;?
&lt;br&gt;ABC-List is a &amp;quot;thought tool&amp;quot; by &lt;a href=&quot;http://www.birkenbihl.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Vera F. Birkenbihl&lt;/a&gt;.&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/File-Type-Integration-Tutorial-tp26156033p26156033.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26153052</id>
	<title>Re: Tables</title>
	<published>2009-11-01T09:35:03Z</published>
	<updated>2009-11-01T09:35:03Z</updated>
	<author>
		<name>Q Beukes</name>
	</author>
	<content type="html">&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;&lt;div&gt;1. How can I hide the first column which displays the node itself&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;

Can&amp;#39;t find this, though I guess it&amp;#39;s not too critical.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
&lt;div&gt;2. All the String fields have a little ellipse button next to it to view the full string. How can I hide this.&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Found this by returning a generic PropertyEditorSupport for the node property as it&amp;#39;s editor.&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;&lt;div&gt;3. How do I display custom components in a cell, specifically a JButton.&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
&lt;div&gt;For this I was thinking of seeing how existing properties do it. Where can I find the code of the color property editor, like for a components fore/background color? I search on codesearch for the descriptions of these properties, but can&amp;#39;t even find them.&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Q &lt;/div&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tables-tp26146458p26153052.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26152738</id>
	<title>Re: Tables</title>
	<published>2009-11-01T08:58:27Z</published>
	<updated>2009-11-01T08:58:27Z</updated>
	<author>
		<name>Q Beukes</name>
	</author>
	<content type="html">OK. I got a TreeTableView going. The normal TableView is still a mystery to me. Though by hiding the root node this seems to do something.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;3 questions:&lt;/div&gt;&lt;div&gt;1. How can I hide the first column which displays the node itself&lt;/div&gt;

&lt;div&gt;2. All the String fields have a little ellipse button next to it to view the full string. How can I hide this?&lt;/div&gt;&lt;div&gt;3. How do I display custom components in a cell, specifically a JButton.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;

Thanks,&lt;/div&gt;&lt;div&gt;Quintin Beukes&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Sun, Nov 1, 2009 at 1:38 AM, Quintin Beukes &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26152738&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;

Hey,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I found a component called TableView. Though through extensive google/codesearch and a lot of trying, I can&amp;#39;t even instantiate it. &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Can anyone perhaps explain to me how I should use this? How the nodes should be structured, how the table model fits in? I tried making table models that return raw values, properties by row/column, properties by node/property, everything I could think of. I can&amp;#39;t even get it to load. It just ends up in an AssertionException.&lt;/div&gt;


&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Any help would be appreciated.&lt;/div&gt;&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;&lt;font color=&quot;#888888&quot;&gt;Quintin Beukes&lt;/font&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Sun, Nov 1, 2009 at 12:21 AM, Quintin Beukes &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26152738&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex&quot;&gt;


Hey,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I&amp;#39;m looking for a way to display tabular data in the explorer.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;What I want to do is the following:&lt;/div&gt;&lt;div&gt;1. Have data items (which are object instances)&lt;/div&gt;&lt;div&gt;

2. Display each item as a row, with selected properties in columns&lt;/div&gt;

&lt;div&gt;3. Have an action item like a button in another column&lt;/div&gt;&lt;div&gt;4. Be able to link this with property sheets. For ex. you double click it and a property view pops up to the left. The property sheet will then display more information, as well as listen for services to provide extra information related to this entity.&lt;/div&gt;



&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I would like to refrain from standard JTables, so I can hook into the NB explorer/nodes api a bit better.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I heard of a tree table, which, as I understand it is the explorer API view on nodes, but displayed in a table. This sounds fine, as I would then only have root nodes to display one level data?&lt;/div&gt;



&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;Quintin Beukes&lt;br&gt;
&lt;/div&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tables-tp26146458p26152738.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26147047</id>
	<title>Re: Tables</title>
	<published>2009-10-31T16:38:03Z</published>
	<updated>2009-10-31T16:38:03Z</updated>
	<author>
		<name>Q Beukes</name>
	</author>
	<content type="html">Hey,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I found a component called TableView. Though through extensive google/codesearch and a lot of trying, I can&amp;#39;t even instantiate it. &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Can anyone perhaps explain to me how I should use this? How the nodes should be structured, how the table model fits in? I tried making table models that return raw values, properties by row/column, properties by node/property, everything I could think of. I can&amp;#39;t even get it to load. It just ends up in an AssertionException.&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Any help would be appreciated.&lt;/div&gt;&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;Quintin Beukes&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Sun, Nov 1, 2009 at 12:21 AM, Quintin Beukes &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26147047&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quintin@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;

Hey,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I&amp;#39;m looking for a way to display tabular data in the explorer.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;What I want to do is the following:&lt;/div&gt;&lt;div&gt;1. Have data items (which are object instances)&lt;/div&gt;&lt;div&gt;
2. Display each item as a row, with selected properties in columns&lt;/div&gt;

&lt;div&gt;3. Have an action item like a button in another column&lt;/div&gt;&lt;div&gt;4. Be able to link this with property sheets. For ex. you double click it and a property view pops up to the left. The property sheet will then display more information, as well as listen for services to provide extra information related to this entity.&lt;/div&gt;


&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I would like to refrain from standard JTables, so I can hook into the NB explorer/nodes api a bit better.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I heard of a tree table, which, as I understand it is the explorer API view on nodes, but displayed in a table. This sounds fine, as I would then only have root nodes to display one level data?&lt;/div&gt;


&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;Quintin Beukes&lt;br&gt;
&lt;/div&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tables-tp26146458p26147047.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26146458</id>
	<title>Tables</title>
	<published>2009-10-31T15:21:40Z</published>
	<updated>2009-10-31T15:21:40Z</updated>
	<author>
		<name>Q Beukes</name>
	</author>
	<content type="html">Hey,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I&amp;#39;m looking for a way to display tabular data in the explorer.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;What I want to do is the following:&lt;/div&gt;&lt;div&gt;1. Have data items (which are object instances)&lt;/div&gt;&lt;div&gt;2. Display each item as a row, with selected properties in columns&lt;/div&gt;

&lt;div&gt;3. Have an action item like a button in another column&lt;/div&gt;&lt;div&gt;4. Be able to link this with property sheets. For ex. you double click it and a property view pops up to the left. The property sheet will then display more information, as well as listen for services to provide extra information related to this entity.&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I would like to refrain from standard JTables, so I can hook into the NB explorer/nodes api a bit better.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I heard of a tree table, which, as I understand it is the explorer API view on nodes, but displayed in a table. This sounds fine, as I would then only have root nodes to display one level data?&lt;/div&gt;

&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;Quintin Beukes&lt;br&gt;
&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tables-tp26146458p26146458.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26146457</id>
	<title>hiding the navigate menu item</title>
	<published>2009-10-31T08:47:34Z</published>
	<updated>2009-10-31T08:47:34Z</updated>
	<author>
		<name>jeremy18</name>
	</author>
	<content type="html">Came across this problem and found the explanation here:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://antonioshome.net/kitchen/netbeans/nbms-sandwich.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://antonioshome.net/kitchen/netbeans/nbms-sandwich.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;When hiding items you need to use their &amp;quot;real&amp;quot; name as found in properties. Not the &amp;quot;display&amp;quot; name as seen in the layer explorer.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hope this helps.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Jeremy
&lt;br&gt;&lt;br&gt;(NetBeans Platform Newbie)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/hiding-the-navigate-menu-item-tp25744539p26146457.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26138205</id>
	<title>Re: Developing SDI applications in Netbeans</title>
	<published>2009-10-30T16:13:40Z</published>
	<updated>2009-10-30T16:13:40Z</updated>
	<author>
		<name>Jesse Glick</name>
	</author>
	<content type="html">Gregg Wonderly wrote:
&lt;br&gt;&amp;gt; is there an @ServiceProvider annotation use that will do the same 
&lt;br&gt;&amp;gt; thing as the #- prefix to remove the old one? &amp;nbsp;Does the position value 
&lt;br&gt;&amp;gt; take care of this if you know the other position value, or is there a 
&lt;br&gt;&amp;gt; way to make sure yours is the one used if you use the annotation?
&lt;br&gt;&lt;br&gt;You can do either. Since the standard decl is (*)
&lt;br&gt;&lt;br&gt;package org.netbeans.core.windows;
&lt;br&gt;@ServiceProvider(service=WindowManager.class)
&lt;br&gt;public class WindowManagerImpl extends WindowManager {...}
&lt;br&gt;&lt;br&gt;and any declared position trumps no declared position, you could write
&lt;br&gt;&lt;br&gt;@ServiceProvider(service=WindowManager.class, position=/*RIPJSB*/1750)
&lt;br&gt;public class MyWindowManager extends WindowManager {...}
&lt;br&gt;&lt;br&gt;to make yours be loaded preferentially (WM.getDefault just uses the first instance it finds); or
&lt;br&gt;&lt;br&gt;@ServiceProvider(service=WindowManager.class, supersedes=&amp;quot;org.netbeans.core.windows.WindowManagerImpl&amp;quot;)
&lt;br&gt;public class MyWindowManager extends WindowManager {...}
&lt;br&gt;&lt;br&gt;to hide the original and thus have the same effect.
&lt;br&gt;&lt;br&gt;(*) You don't need source code or even binaries to find this out; just peek at the summary produced by dev builds:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://deadlock.netbeans.org/hudson/job/nbms-and-javadoc/lastStableBuild/artifact/nbbuild/build/generated/services.txt&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://deadlock.netbeans.org/hudson/job/nbms-and-javadoc/lastStableBuild/artifact/nbbuild/build/generated/services.txt&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Developing-SDI-applications-in-Netbeans-tp26132748p26138205.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26137183</id>
	<title>Use JIDE QuickFilterTreeView component with BeanTreeView</title>
	<published>2009-10-30T14:33:14Z</published>
	<updated>2009-10-30T14:33:14Z</updated>
	<author>
		<name>fcoutel</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;JIDE have a great component to filter Jtree nodes. I was wondering if it would be possible to use it with a BeenTreeView. If not is there another component to search and filter nodes provided by netbeans?
&lt;br&gt;&lt;br&gt;Many thanks!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Use-JIDE-QuickFilterTreeView-component-with-BeanTreeView-tp26137183p26137183.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26137075</id>
	<title>Dialog multiplicity...</title>
	<published>2009-10-30T14:23:23Z</published>
	<updated>2009-10-30T14:23:23Z</updated>
	<author>
		<name>heidtmare</name>
	</author>
	<content type="html">i have a jpopup option item that instantiates a dialog(using dialogDescriptor &amp; dialogDisplayer). the first time i use the option one dialog is created, but subsequent uses appear to be making multiple dialogs.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;I am not retaining any references and im not looping. Whats goin on?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dialog-multiplicity...-tp26137075p26137075.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26135237</id>
	<title>Re: Developing SDI applications in Netbeans</title>
	<published>2009-10-30T11:52:53Z</published>
	<updated>2009-10-30T11:52:53Z</updated>
	<author>
		<name>tomwheel</name>
	</author>
	<content type="html">I'm just now switching to the 6.7.1 platform and so I haven't yet used
&lt;br&gt;the annotations much. &amp;nbsp;That said, the @ServiceProvider annotation's
&lt;br&gt;javadoc:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://bits.netbeans.org/dev/javadoc/org-openide-util/org/openide/util/lookup/ServiceProvider.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bits.netbeans.org/dev/javadoc/org-openide-util/org/openide/util/lookup/ServiceProvider.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;indicates that you could set the position and/or specify a list of
&lt;br&gt;implementations which your own implementation supersedes. &amp;nbsp;If you
&lt;br&gt;manage to get it working, it would be great if you could put a quick
&lt;br&gt;example in this FAQ entry:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://wiki.netbeans.org/DevFaqLookupHowToOverride&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.netbeans.org/DevFaqLookupHowToOverride&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Fri, Oct 30, 2009 at 1:30 PM, Gregg Wonderly &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26135237&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gregg@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Tom, is there an @ServiceProvider annotation use that will do the same thing
&lt;br&gt;&amp;gt; as the #- prefix to remove the old one?  Does the position value take care
&lt;br&gt;&amp;gt; of this if you know the other position value, or is there a way to make sure
&lt;br&gt;&amp;gt; yours is the one used if you use the annotation?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Tom Wheeler
&lt;br&gt;&lt;a href=&quot;http://www.tomwheeler.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tomwheeler.com/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Developing-SDI-applications-in-Netbeans-tp26132748p26135237.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26134960</id>
	<title>Re: Developing SDI applications in Netbeans</title>
	<published>2009-10-30T11:30:41Z</published>
	<updated>2009-10-30T11:30:41Z</updated>
	<author>
		<name>Gregg Wonderly-2</name>
	</author>
	<content type="html">Tom Wheeler wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Support for it was removed a few releases ago, so it's not built in.
&lt;br&gt;&amp;gt; That said, it's possible to replace NetBeans' own Window System with
&lt;br&gt;&amp;gt; your own implementation that has the behavior you want. &amp;nbsp;I wrote an
&lt;br&gt;&amp;gt; FAQ entry about it:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://wiki.netbeans.org/DevFaqReplaceWindowSystem&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.netbeans.org/DevFaqReplaceWindowSystem&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The part about DummyWindowManager will probably be of special interest
&lt;br&gt;&amp;gt; to you since it opens each TopComponent in its own window.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Feel free to update the FAQ based on what you learn.
&lt;/div&gt;&lt;br&gt;Tom, is there an @ServiceProvider annotation use that will do the same thing as 
&lt;br&gt;the #- prefix to remove the old one? &amp;nbsp;Does the position value take care of this 
&lt;br&gt;if you know the other position value, or is there a way to make sure yours is 
&lt;br&gt;the one used if you use the annotation?
&lt;br&gt;&lt;br&gt;Gregg Wonderly
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Developing-SDI-applications-in-Netbeans-tp26132748p26134960.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26134898</id>
	<title>Re: Strange GUI Builder behavior</title>
	<published>2009-10-30T11:26:29Z</published>
	<updated>2009-10-30T11:26:29Z</updated>
	<author>
		<name>Quintin Beukes-2</name>
	</author>
	<content type="html">Hey,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Did you perhaps copy/paste the Form to create a new one?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;It is a bug I&amp;#39;ve noticed. If you duplicate a form with copy/refactor-paste the .form file doesn&amp;#39;t get updated properly. Though the code in the .java is updated correctly. So running it works, but when netbeans interprets the .form it still reads the messages from the original form file. Because the properties don&amp;#39;t exist in the original one (As the classname change, and thus the property names as well) the GUI builder shows the property name (which is what it does when the property can&amp;#39;t be found).&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;You&amp;#39;ll notice this if you change the property values. They are changed in the original Bundle.properties, instead of the new one. &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;The copy/paste behaviour is very buggy, so I rather just create the forms manually and then copy/paste all the components (open the original, select everything, copy) into the new form, and do the same with the code. It&amp;#39;s a bit more cumbersome, but at least you know your .form is correct and you won&amp;#39;t accidentally mess up the original - which can happen because localization changes in the pasted form updates the original bundle.&lt;/div&gt;

&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I&amp;#39;m not sure if this also happens when you copy/paste in the same package. I&amp;#39;ve only done it in between packages.&lt;/div&gt;&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;Quintin Beukes&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Oct 30, 2009 at 4:22 PM, theophil &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26134898&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kruschitz@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;

Hi,&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Instead of displaying the actual text value of a JLabel, the GUI Builder displays the key found in the resource bundle. So, in the &amp;quot;Design&amp;quot; view as well as in the &amp;quot;Design Preview&amp;quot; window, I see something like &amp;quot;&amp;lt;SomeVisualPanel1.someLabel.text&amp;gt;&amp;quot; in my JLabels, which is the key found in the Bundle.properties file.&lt;br&gt;


&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Interestingly, when I run my application, the &amp;quot;real&amp;quot; value is displayed (e.g. &amp;quot;Name :&amp;quot; instead of &amp;quot;&amp;lt;SomePanel.someLabel.text&amp;gt;&amp;quot;). It&amp;#39;s kind of weird, because I didn&amp;#39;t make any changes to these panels recently and, if I create some new ones, the GUI Builder behaves normally, displaying the correct text values in my JComponents.&lt;br&gt;


&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Did this happen to anyone else or does somebody have an idea how I could get it to display those values correctly?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Philippe&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
-- Netbeans 6.7.1&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Strange-GUI-Builder-behavior-tp26131016p26134898.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26134779</id>
	<title>Re: Developing SDI applications in Netbeans</title>
	<published>2009-10-30T11:18:35Z</published>
	<updated>2009-10-30T11:18:35Z</updated>
	<author>
		<name>tomwheel</name>
	</author>
	<content type="html">Support for it was removed a few releases ago, so it's not built in.
&lt;br&gt;That said, it's possible to replace NetBeans' own Window System with
&lt;br&gt;your own implementation that has the behavior you want. &amp;nbsp;I wrote an
&lt;br&gt;FAQ entry about it:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://wiki.netbeans.org/DevFaqReplaceWindowSystem&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.netbeans.org/DevFaqReplaceWindowSystem&lt;/a&gt;&lt;br&gt;&lt;br&gt;The part about DummyWindowManager will probably be of special interest
&lt;br&gt;to you since it opens each TopComponent in its own window.
&lt;br&gt;&lt;br&gt;Feel free to update the FAQ based on what you learn.
&lt;br&gt;&lt;br&gt;On Fri, Oct 30, 2009 at 11:05 AM, edbeaty &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26134779&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;edbeaty@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello.  I'm starting work on a new project, and would like to use Netbeans as the RCP framework. The problem is, our customer prefers a single document interface for our application, which Netbeans no longer officially supports.  My question is, has anyone out there recently developed an SDI application using the Netbeans RCP framework, and if so, how did you re-enable or replace the now-missing SDI functionality?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ed
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Tom Wheeler
&lt;br&gt;&lt;a href=&quot;http://www.tomwheeler.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tomwheeler.com/&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Developing-SDI-applications-in-Netbeans-tp26132748p26134779.html" />
</entry>

</feed>
