Questions tagged [netbeans-plugins]

Tag to group questions regarding third party netbeans plugins.

About

Netbeans plugins refers to third party netbeans plugins and not Netbeans usage or Netbeans platform usage.

Tag Usage

A question regarding thirdparty netbeans plugins should be tagged with . If you are developing a plugin yourself and you have a question about that, then the appropriate tag to use is . Please refrain from tagging netbeans-platform questions as netbeans-plugins.

If u have a question regarding netbeans usage, then tag it as

Also, please refrain from tagging a question using all the available netbeans tags. This seems to be the case in almost all netbeans related questions. Doing this beats the purpose of having multiple tags.

External Resources

Plugin portal

366 questions
0
votes
1 answer

Iterating through jFrame components

I have a frame with a jPanel, a button and about 50 jTextFields in it. I need to write an array one item in one jTextField on button click event. How can it be done?
Albin Shaji
  • 61
  • 1
  • 11
0
votes
1 answer

NetBeans Platform: Updating editor window content

I'm writing a plugin for the NetBeans Platform and would like to know if it's possible to force an editor window to update it's content from harddrive. I'm in the situation that I know some file on the HDD has changed but NetBeans doesn't recognize…
Yser
  • 2,086
  • 22
  • 28
0
votes
1 answer

Netbeans plugin (add action)

I want create plugin for Netbeans to add some action in Netbeans to certain file types. Conditionally enabled action depends on content type. I don't know mime type for some file types and I don't know how to know it. Can I register my own content…
Joel
  • 473
  • 2
  • 7
  • 22
0
votes
1 answer

How to get classLoader of netbeans specify project

I develop a simple plugin for netbeans platform. I wonder how can i get a classpath of specify java project (for example i have opened two WebJavaProject) and now i dont know how can i get a classsLoader for specify project. Im trying something like…
0
votes
1 answer

String constants for NetBeans project types

I am developing a plugin for NetBeans 8.0 and I created a LookupProvider which is registered like that: @LookupProvider.Registration(projectType = { "org-netbeans-modules-ant-freeform", "org-netbeans-modules-j2ee-archiveproject", …
Benny Code
  • 51,456
  • 28
  • 233
  • 198
0
votes
1 answer

java.lang.IllegalStateException: WELD-000340: A request must be associated with the context in order to load the known conversations

I'm getting the following exception on accessing an XHTML page on WildFly 8.1.0 final. 00:46:41,859 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (default task-26) Error Rendering View[/Test.xhtml]: java.lang.IllegalStateException:…
Tiny
  • 27,221
  • 105
  • 339
  • 599
0
votes
1 answer

How to get EditorCookie or DataObject for a given JTextComponent in NetBeans IDE?

I am listening on changes in EditorRegistry where I can get which JTextComponent is currently selected. Anyone knows how can I get an EditorCookie or a DataObject for it? JTextComponent jTextComponent = EditorRegistry.focusedComponent(); Document…
Milan Nosáľ
  • 19,169
  • 4
  • 55
  • 90
0
votes
1 answer

My codename is not updating when I do it via netbeans

My codename one is not updating when I run the update from the Netbeans plugins update option. It does the whole update process but once it finishes and restarts I find it still set to the old version and asking for an update. Am using Netbeans 7.4…
0
votes
1 answer

How it is possible to call open project window when i develop plugin in netbeans platform?

I develop plugin to netbeans IDE and i would like to determinate user to select a open projects in netbeans IDE in some action: How it is possible to call this window and get some reason from user action on it?:
0
votes
1 answer

Netbeans Wizard, method storeSettings run twice

I develop plugin for Netbeans IDE and I use Wizard with 1 step. (Just finish button on the first panel no other panels). When I run I saw that the method storeSetting is called twice. How do I prevent running this method two times?
0
votes
2 answers

how to display netbeans exceptions throught develop plugin

I start developing some plugin in Netbeans Platform and i cant find way to display exceptions throwing from my plugin (plugin is installed). When exception appear netbeans dosent shows message of exception (work`s that how exception never appear).…
0
votes
1 answer

Add the Plugins panel in the tools panel to my NetBeans Platform application

In the tools panel I have only the option of "Options". I want to have the option of "Plugins" too so that I can add different plugins to the application depending upon my requirement.
0
votes
1 answer

netbeans shortcut for typing custom character or word

Is it possible in Netbeans 8, to assign a shortcut key for typing specific character or word? (for example ‌)
mrdaliri
  • 7,148
  • 22
  • 73
  • 107
0
votes
1 answer

Develop a phonegap application, Is there a plugin for netbeans?

I have been looking for a netbeans plugin for phoneGap (Cordova) here but I didn't find anything. How to develop in phoneGap using netbeans? Is it there a plugin to install ? and Where find phonegap plugin for netbeans?
Bellash
  • 7,560
  • 6
  • 53
  • 86
0
votes
1 answer

Extending Netbeans Python Plugin

We link to extend(https://platform.netbeans.org/tutorials/nbm-projectextension.html) and add some functionality to Netbean Python plug-in. For that, we needed to know the projectType of that plugin. Where can we get it.