Parsing Command Line Parameters

Using the Command Line Parsing API, it is possible to process parameters passed to your NetBeans Platform application via the command line. This article explores how it works. Read this excellent blog post by Geertjan which provided me with some of the information for this article. Also useful was the javadoc. NetBeans Platform 7.1 Code … Read more

Extensions and Deserialisation

When loading classes as extensions in a NetBeans Platform application, serialising the dynamically loaded objects is straight forward. However, deserialising them is not. 🙂 This article assumes that the reader is familiar with extension points. For more information on this topic, read the NetBeans Platform 7.1 Quick Start tutorial, the Lookup API javadocs and Toni … Read more

Tutorial: Not So Global Selection

Selection management and nodes are two frequently used aspects of the NetBeans Platform. And these aspects have been well documented in tutorials: NetBeans Selection Management Tutorial I—Using a TopComponent’s Lookup NetBeans Selection Management Tutorial II—Using Nodes NetBeans Nodes API Tutorial These tutorials (specifically the second one) deal with explorer views that are located on top … Read more

Ode to Project Groups

Observing developers at work in the NetBeans IDE, I have noticed that the project groups feature is perhaps not as well known as one might expect. Despite being listed as one of the Base IDE features. 🙂 Quickly opening up a set of related projects is a very useful feature indeed, if you work on … Read more