netbeans-plugins

UML Plugin for Netbeans 7.0?

匆匆过客 提交于 2019-12-02 15:33:53
how can i install/add UML plugin to Netbeans 7.0, i can find several ways to install plugin but only for the earlier versions from 6.9 http://forums.netbeans.org/topic28035.html its not working for me. Here is how to install on 7.1 (should also work for 7.0) Add a new configuration to update centers: Tools -> Plugins -> Settings -> Add As the URL copy the following into the textbox: http://dlc.sun.com.edgesuite.net/netbeans/updates/6.9/uc/m1/dev/catalog.xml Now on the tab Available Plugins there should be UML in category UML previous don't work, use this link netbeans 6.7.1 plugin container

How do I hide menus without a layer file in NetBeans Platform?

筅森魡賤 提交于 2019-12-02 06:32:48
问题 I am having a hard time customizing my menus in the NetBeans Platform. The examples I've seen require you to have a Layer file which I don't believe I have in my NetBeans Platform Project. To hide a menu via layers you are supposed to do this: <folder name="Menu"> <folder name="View_hidden"/> <folder name="Edit"> <file name="org-openide-actions-FindAction.shadow_hidden"/> </folder> </folder> I would like to know the annotation way of hiding menus. However, if this is the only way to do it,

How do I hide menus without a layer file in NetBeans Platform?

点点圈 提交于 2019-12-02 02:25:40
I am having a hard time customizing my menus in the NetBeans Platform. The examples I've seen require you to have a Layer file which I don't believe I have in my NetBeans Platform Project. To hide a menu via layers you are supposed to do this: <folder name="Menu"> <folder name="View_hidden"/> <folder name="Edit"> <file name="org-openide-actions-FindAction.shadow_hidden"/> </folder> </folder> I would like to know the annotation way of hiding menus. However, if this is the only way to do it, where would I put the layer file and what would i name it? The only way to hide menu items is to add the

Adding additional files to an Inno based setup for a Netbeans application

泪湿孤枕 提交于 2019-12-02 01:21:47
问题 I am using Inno 5 Setup Installer in Netbeans to build my Java Swing application into an executable set up file. It creates an app.exe setup file with all the lib(all jar file) and app.jar. So once user executes app.exe file, it create a folder at C:\users\username\local\appname which has the app.jar file and the libraries. Is it possible to add additional text files in app.exe setup? so these text files will also be avaliable in "appname" folder when executed. These are required for the app

Adding additional files to an Inno based setup for a Netbeans application

半城伤御伤魂 提交于 2019-12-01 22:36:07
I am using Inno 5 Setup Installer in Netbeans to build my Java Swing application into an executable set up file. It creates an app.exe setup file with all the lib(all jar file) and app.jar. So once user executes app.exe file, it create a folder at C:\users\username\local\appname which has the app.jar file and the libraries. Is it possible to add additional text files in app.exe setup? so these text files will also be avaliable in "appname" folder when executed. These are required for the app to run. Thanks for your time :) Rubinum In Inno Setup there is a ScriptWizard which i recommend to use.

Using WildFly 9.x with NetBeans 8.1

*爱你&永不变心* 提交于 2019-12-01 14:32:13
A part of this question. In attempt to using WildFly 9.0.2 final with NetBeans IDE 8.1 (the final release), some serious consequences are still seen. The IDE (the integrated plugin) never auto-deploys the application even though the "Deploy on Save" option on the IDE is enabled (checked / turned on). This always happens correctly while using GlassFish Server. It was already reported and its status is "RESOLVED FIXED" for NetBeans 8.0 but it is difficult to rely upon (sorry). I have migrated the most part of a relatively sizable Java EE application from GlassFish 4.1 to WildFly 9.0.2 final

Using WildFly 9.x with NetBeans 8.1

天大地大妈咪最大 提交于 2019-12-01 14:01:45
问题 A part of this question. In attempt to using WildFly 9.0.2 final with NetBeans IDE 8.1 (the final release), some serious consequences are still seen. The IDE (the integrated plugin) never auto-deploys the application even though the "Deploy on Save" option on the IDE is enabled (checked / turned on). This always happens correctly while using GlassFish Server. It was already reported and its status is "RESOLVED FIXED" for NetBeans 8.0 but it is difficult to rely upon (sorry). I have migrated

Groovy and Grail plugin is missing in Netbeans IDE 9

邮差的信 提交于 2019-12-01 04:30:31
问题 This is the first time I am trying with Grails. I followed the same post "Why I can't create new grails application in Netbeans 8.2?" I installed Netbeans 9 beta version from https://archive.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-netbeans-java-9.0-bin.zip But for me, Groovy/Grails plugin is not available in the plugin window. How to get grail plugin in my case? 回答1: To use Grails with NetBeans 9.0 you must do the following: Make the Groovy and

How to use view scope in case of CDI in JSF 2.0

可紊 提交于 2019-11-30 23:11:53
I created a JSF 2.0 project in Netbeans 6.9. I am starting using CDI. After creating project when i tried to add scope, then i noticed that there is no viewscope in it. I want to know that are the conversation scope and view scope refer to same things? Can i use conversation scope in place of view scope. If no then how can i use view scope with CDI. I also came to know that seam is the solution, but how can i use seam with netbeans. Is there any netbeans plugin for seam? seam-3 Thanks There is no view scope for CDI. The conversation scope is not the same. A view scoped bean lives as long as

How to use view scope in case of CDI in JSF 2.0

我与影子孤独终老i 提交于 2019-11-30 17:48:45
问题 I created a JSF 2.0 project in Netbeans 6.9. I am starting using CDI. After creating project when i tried to add scope, then i noticed that there is no viewscope in it. I want to know that are the conversation scope and view scope refer to same things? Can i use conversation scope in place of view scope. If no then how can i use view scope with CDI. I also came to know that seam is the solution, but how can i use seam with netbeans. Is there any netbeans plugin for seam? seam-3 Thanks 回答1: