DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

  1. DZone
  2. Refcards
  3. Essential NetBeans Platform
refcard cover
Refcard #080

Essential NetBeans Platform

Learn this Swing Framework for Your Applications

Get started with developing your very own robust and extensible applications

Download Refcard
Free PDF for Easy Reference
refcard cover

Written By

author avatar Milos Silhanek
developer, Asseco CE
author avatar Andreas Stefik
Assistant Professor, Southern Illinois University Edwardsville
author avatar Geertjan Wielenga
Writer, Sun
author avatar Tom Wheeler
Private Eye, private company
Table of Contents
► About NetBeans Platform ► Getting Started ► Main Benefits ► NetBeans Platform Modules ► NetBeans Platform APIs ► NetBeans Platform Gotchas ► NetBeans Platform On-Line
Section 1

About NetBeans Platform

By Heiko Böck, Anton Epple, Miloš Šilhánek, Andreas Stefik, Geertjan Wielenga, and Tom Wheeler

The NetBeans Platform is a generic framework for commercial and open source desktop Swing applications. It provides the 'plumbing' that you would otherwise need to write yourself, such as the code for managing windows, connecting actions to menu items, and updating applications at runtime. The NetBeans Platform provides all of these out of the box on top of a reliable, flexible, and well-tested modular architecture.Vaadin is a server-side Ajax web application development framework that allows you to build web applications just like with traditional desktop frameworks, such as AWT or Swing. An application is built from user interface components contained hierarchically in layout components.

In this ref card, you are introduced to the key concerns of the NetBeans Platform, so that you can save years of work when developing robust and extensible applications.

Section 2

Getting Started

To get started with the NetBeans Platform:

Approach How to Get Started
IDE Download NetBeans IDE, which includes NetBeans Platform development tools such as templates, wizards, and complete NetBeans Platform samples out of the box.
Maven Use the Maven archetypes for NetBeans Platform development: NetBeans Platform archetype: - GroupId: org.codehaus.mojo.archetypes - ArtifactId: netbeans-platform-app-archetype NetBeans Module archetype: - GroupId: org.codehaus.mojo.archetypes - ArtifactId: nbm-archetype
Ant Download the NetBeans Platform ZIP file, which includes a build harness. The build harness includes a long list of Ant targets for compiling, running, testing, and packaging NetBeans Platform applications.

Join the NetBeans Community mailing lists!

Section 3

Main Benefits

The following are the main features of the NetBeans Platform, showing you the benefits of using it rather than your homegrown Swing framework.

Feature Description
Module System Modularity offers a solution to 'JAR hell' by letting you organize code into strictly separated and versioned modules. Only modules that have explicitly declared dependencies on each other are able to use code from each other's exposed packages. This strict organization is of particular relevance to large applications developed by engineers in distributed environments, during the development as well as the maintenance of their shared codebase.
Lifecycle Management Just as application servers such as GlassFish provide lifecycle services to web applications, the NetBeans runtime container provides services to Swing applications. Application servers understand how to compose web modules, EJB modules, and so on, into a single web application, just as the NetBeans runtime container understands how to compose NetBeans modules into a single Swing application.
Pluggability End users of the application benefit because they are able to install modules into their running applications via an update center, since NetBeans modules can be installed, uninstalled, activated, and deactivated at runtime.
Service Infrastructure The NetBeans Platform provides an infrastructure for registering and retrieving service implementations, enabling you to minimize direct dependencies between individual modules and enabling a loosely coupled architecture with high cohesion and low coupling.
File System Unified API providing stream-oriented access to flat and hierarchical structures, such as disk-based files on local or remote servers, memory-based files and even XML documents.
Window System Most serious applications need more than one window. Coding good interaction between multiple windows is not a trivial task. The NetBeans window system lets you maximize/minimize, dock/undock, and drag-and-drop windows, without you providing the code.
Standardized UI Toolkit Swing is the standard UI toolkit and is the basis of all NetBeans Platform applications. A related benefit is that you can change look & feels very easily, and add internationalization and Java 2D effects to your applications
Generic Presentation Layer With the NetBeans Platform, you're not constrained by one of the typical pain points in Swing: the JTree model is completely different than the JList model, even though they present the same data. Switching between them means rewriting the model. The NetBeans Nodes API provides a generic model for presenting your data. The NetBeans Explorer & Property Sheet API provides several advanced Swing components for displaying Nodes.
Advanced Swing Components In addition to a window system, the NetBeans Platform provides many other UI-related components, such as a property sheet, a palette, wizards, complex Swing components for presenting data, a Plugin Manager, and an Output window.
JavaHelp Integration The JavaHelp API is an integral part of the NetBeans Platform. You can create help sets in each of your modules and the NetBeans Platform will automatically resolve them into a single helpset. You can also bind help topics to UI components to create a context-sensitive help system for your application.
Section 4

NetBeans Platform Modules

The NetBeans Platform consists of a large set of modules. You do not need all of them. In fact, you only need 5. You also do not need to have a user interface, meaning that you can create server/console applications on the NetBeans Platform.

The complete list of NetBeans Platform modules is provided below. Items in red are mandatory, items in green are optional.

Module Description
boot.jar core.jar org-openide-filesystems.jar org-openide-modules.jar org-openide-util.jar Provides the runtime container
org-netbeans-core.jar org-netbeans-core-execution.jar org-netbeans-core-ui.jar org-netbeans-core-windows.jar Provides the basic UI components provided by the NetBeans Platform, together with related infrastructure.
org-netbeans-core-output2.jar org-openide-io.jar Provides an Output window for displaying processing messages. It also exposes an API that you can use to write to the window and change text colors.
org-netbeans-core-multiview.jar Provides a framework for multi-tab windows, such as used by the Matisse GUI Builder in NetBeans IDE.
org-openide-windows.jar Provides the API for accessing the window system.
org-netbeans-modules-autoupdate-services.jar org-netbeans-modules-autoupdate-ui.jar Provides the Plugin Manager together with the functionality for accessing and processing update centers where NetBeans modules are stored.
org-netbeans-modules-favorites.jar Provides a customizable window which can be used as a filechooser, enabling the user to select and open folders and files.
org-openide-actions.jar Provides a number of configurable system actions, such as 'Cut', 'Copy', and 'Paste'.
org-openide-loaders.jar Provides an API that lets an application recognize file types.
org-openide-nodes.jar org-openide-explorer.jar org-netbeans-swing-outline.jar Provides the API for modeling business objects and displaying them to the user.
org-netbeans-modules-javahelp.jar Provides the JavaHelp runtime library and enables JavaHelp sets from different modules to be merged into a single helpset.
org-netbeans-modules-mimelookup.jar org-netbeans-modules-editor-mimelookup.jar Provides an API for discovery and creation of settings specific to file types.
org-netbeans-modules-masterfs.jar Provides a central wrapper file system for your application.
org-netbeans-modules-options-api.jar Provides an Options window for user customizations and an API for extending it.
org-netbeans-api-progress.jar org-openide-execution.jar org-netbeans-modules-progress-ui.jar Provides support for asynchronous long running tasks and integration for long running tasks with the NetBeans Platform's progress bar.
org-netbeans-modules-queries.jar Provides an API for getting information about files and an SPI for creating your own queries.
org-netbeans-modules-sendopts.jar Provides an API and SPI for registering your own handlers for accessing the command line.
org-netbeans-modules-settings.jar Provides an API for saving module-specific settings in a user-defined format.
org-openide-awt.jar Provides many helper classes for displaying UI elements such as notifications.
org-openide-dialogs.jar Provides an API for displaying standard and customized dialogs.
org-openide-text.jar Provides an extension to the javax.swing,text API.
org-netbeans-api-visual.jar Provides a widget & graph library for modeling and displaying visual representations of data.
org-netbeans-spi-quicksearch.jar Provides the infrastructure for integrating items into the Quick Search field.
org-netbeans-swing-plaf.jar org-netbeans-swing-tabcontrol org-jdesktop-layout.jar Provides the look and feel and the display of tabs and a wrapper for the Swing Layout Extensions library.

Some of the items in the list above can be used outside of the NetBeans Platform. In these cases, you can put the JAR on the class path of a standard Swing application and use the related functionality there: org-openide-filesystems.jar (to use the virtual filesystem), org-openide-util.jar (to use the Lookup class), org-openide-nodes.jar & org-openide-explorer.jar (to use Nodes and explorer views), org-netbeans-swing-outline.jar (to use a Swing treatable component), org-netbeans-api-visual.jar (to use the widget library).

Section 5

NetBeans Platform APIs

The NetBeans Platform provides a large set of APIs. You do not need to know or use all of them, just those that make sense in your specific context. Below are the main API groupings, together with the most important information related to the grouping, such as their most important configuration attributes and API classes.

Module System

Module System

​x
1
​
2
Manifest-Version: 1.0
3
Ant-Version: Apache Ant 1.7.1
4
Created-By: 11.3-b02 (Sun Microsystems Inc.)
5
OpenIDE-Module-Public-Packages: -
6
OpenIDE-Module-Module-Dependencies: org.openide.util > 7.31.1.1
7
OpenIDE-Module-Java-Dependencies: Java > 1.5
8
OpenIDE-Module-Implementation-Version: 091216
9
AutoUpdate-Show-In-Client: true
10
OpenIDE-Module: org.demo.hello
11
OpenIDE-Module-Layer: org/demo/hello/layer.xml
12
OpenIDE-Module-Localizing-Bundle: org/demo/hello/Bundle.properties
13
OpenIDE-Module-Specification-Version: 1.0
14
OpenIDE-Module-Requires: org.openide.modules.ModuleFormat1
15
​

These are the most important NetBeans-related manifest attributes.

Type Description
OpenIDE-Module The identifier of a module, providing a unique name used for recognition by the module system. This is the only required entry in a manifest file for a module.
OpenIDE-Module-Layer The location and name of the module's layer.xml file, if any.
OpenIDE-Module-Public-Packages By default, all packages in a module are hidden from all other modules. Via this attribute, you expose packages to external modules.
OpenIDE-Module-Localizing-Bundle The location and name of a properties file providing a display name and the like.
OpenIDE-Module-Module-Dependencies OpenIDE-Module-Java-Dependencies Modules can request general or specific versions of other modules (|OpenIDE-Module-Module-Dependencies|), Java packages (|OpenIDE-Module-Package-Dependencies|), or Java itself (|OpenIDE-Module-Java-Dependencies|).
OpenIDE-Module-Provides OpenIDE-Module-Requires Modules can specify dependencies without naming the exact module to depend on. A module may /provide/ one or more /tokens/. These are strings of conventional meaning, in the format of a Java package or class name.
OpenIDE-Module-Specification-Version OpenIDE-Module-Implementation-Version In line with the Java Versioning Specification, modules can indicate two pieces of version information about themselves using the |OpenIDE-Module-Specification-Version| and the |OpenIDE-Module-Implementation-Version| tags.
AutoUpdate-Show-In-Client This attribute determines whether the module is shown in the Plugin Manager.

For details on these and other attributes, see

http://bits.netbeans.org/6.8/javadoc/org-openide-modules.

Hot Tip

To influence the lifecycle of a module, extend org.openide.modules.ModuleInstall, and register it in the manifest under the OpenIDE-Module-Install key.

Window System

The window system handles the display of JPanel-like components and integrates them with the NetBeans Platform. The main classes are listed below.

Type Description
TopComponent A JPanel that provides a new window in your application. The window comes with many features for free, such as maximize/minimize and dock/undock.
Mode A container in which TopComponents are docked. You do not need to subclass this class to use it. Instead, it is configured in an XML file.
TopComponentGroup A group of windows, which should behave in concert. For example, windows within a group can be opened or closed together. As with Modes, these are defined in an XML file, not by subclassing TopComponentGroup.
WindowManager Controls all the windows, modes, and window groups. You can request the WindowManager for its windows, modes, and groups. You can also cast it to a JFrame and then set the title bar and anything else that you would do with JFrames.

A mode, that is, a window position, is defined in an XML file, which is contributed to the System FileSystem via registration

entries in the layer.xml file. The NetBeans Platform provides a set of default modes, the most important of which are as follows:

Type Description
editor main area of application (not necessarily an actual editor
explorer left vertical area, such as for a Projects window
properties right vertical area, typically for a Properties window
navigator left lower vertical area
output horizontal area at base of application
palette right vertical area for items to drag into a visual pane
leftSlidingSide minimized state in left sidebar
rightSlidingSide minimized state in right sidebar
bottomSlidingSide minimized state in bottom status area

A TopComponent is registered in a mode as follows, note especially the lines in bold below:

12
1
​
2
<folder name='Windows2'>
3
<folder name='Components'>
4
<file name='MyTopComponent.settings' url='MyTopComponentSettings.xml'/>
5
</folder>
6
<folder name='Modes'>
7
<folder name='editor'>
8
<file name='MyTopComponent.wstcref' url='MyTopComponentWstcref.xml'/>
9
</folder>
10
</folder>
11
</folder>
12
​

The XML files referred to above are small settings files that NetBeans IDE can generate for you.

Though the default modes should be sufficient for most business scenarios, you might like to adjust them. In that case,you are creating your own mode definitions. A mode definition must follow the related DTD, which is as follows:

http://netbeans.org/dtds/mode-properties2_1.dtd

Hot Tip

Hide the existing modes and create your own, if the existing ones are really not sufficient for you.

The window manager handles the display of the windows in the application's main frame. Aside from being able to access its main Frame, you can also query it for information, as listed below:

How do I... Description
Find a specific TopComponent? WindowManager.getDefault().findTopComponent('id')
Find a specific mode? WindowManager.getDefault().findMode('id')Once you have found a mode, you can use Mode.dockInto(tc)to programmatically dock a TopComponent into a specific mode.
Find a specific TopComponentGroup? WindowManager.getDefault().findTopComponent Group('id')
Ensure that the application is fully started up? WindowManager.getDefault().invokeWhenUIReady(Runnable)
Get the active TopComponent? WindowManager.getDefault().getRegistry().getActivated()
Get a set of opened TopComponents? WindowManager.getDefault().getRegistry().getOpened()
Get the main frame of the application WindowManager.getDefault().getMainWindow()

Lookup

Lookup is a data structure for loosely coupled communication. It is similar to but more powerful than the ServiceLoader class in JDK 6 (for example, Lookup supports event notifications) enabling you to load objects into the context

of your application, but also into the context of NetBeans UI components, such as windows and Nodes.

These are the most important Lookups to be aware of:

Type Description
Global lookup, provides selection management The Lookup that gives you access to the currently selected UI component, most commonly the focused Node.Lookup lkp = Utilities.actionsGlobalContext();
Local lookup, provides lookup of NetBeans objects such as windows and Nodes The local context of a specific NetBeans Platform UI object. //For Windows components: Lookup lkp = myTopComponent,getLookup(); //For Nodes: Lookup lkp = myNode.getLookup();
Default lookup The application's context, comparable to the JDK 6 ServiceLoader class, provided via the META-INF/services folder. Lookup lkp = Lookup.getDefault();

These are typical tasks related to Lookup and how to code them:

How do I... Description
Register a service? Annotate a service provider with the @ServiceProvider class annotation, at compile time the METAINF/ services folder is created, registering the implementation.
Find the default service implementation? MyService svc = Lookup.getDefault().lookup(MyService.class)
Find all service implementations? Collection<? extends MyService> coll = Lookup.getDefault(). lookupAll(MyService.class)
Listen to changes in a Lookup?Tip: Keep a reference to the result object, otherwise it will be garbage collected. Lookup.Result lkpResult = theLookup.lookupResult(MyObject. class); lkpResult.addLookupListener( new LookupListener() { @Override public void resultChanged(LookupEvent e)( Result res = (Result) e.getSource(); Collection<? extends MyObject> coll = res.allInstance(); //iterate through the collection } ); lkpResult.allInstances(); // first call is needed
Create a Lookup for an object? //Lookup for single object: Lookup lkp = Lookups.singleton( myObject ); //Lookup for multiple objects: Lookup lkp = Lookups.fixed(myObject, other); //Lookup for dynamic content: InstanceContent ic = new InstanceContent(); Lookup lkp = new AbstractLookup(ic); ic.add(myObject);
Merge Lookups? Lookup commonlkp = new ProxyLookup( dataObjectLookup, nodeLookup, dynamicLookup);
Provide a Lookup for my TopComponent? //In the constructor of TopComponent: associateLookup(myLookup);
Provide a Lookup for a subclass of AbstractNode? new AbstractNode(myKids, myLookup);

Central Registry (System FileSystem)

The central registry is organized as a virtual file system accessible by all the modules in a NetBeans Platform application. NetBeans Platform APIs, such as the Window System API, make available extension points enabling you to declaratively register your components. A module's contributions to the system are provided by specialized XML files, called 'layer files', normally named 'layer.xml'.

Below are the most important extension points provided out of the box by the NetBeans APIs, represented by folders in a layer file:

Actions, Menu, Toolbars, Navigator/Panels, OptionsDialog, Services, Shortcuts, TaskList, and Windows2.

The NetBeans Platform helps you to register items correctly in the file system by letting you, in some cases, annotate your classes instead of requiring you to manually type XML tags in the layer.xml file by hand. The current set of annotations impacting the layer.xml is listed below:

@AntBasedProjectRegistration, @CompositeCategoryProvider.Registration, @EditorActionRegistration,@LookupMerger.Registration, @LookupProvider.Registration, @NodeFactory.Registration, @OptionsPanelController.ContainerRegistration, @OptionsPanelController.SubRegistration, @OptionsPanelController.TopLevelRegistration, @ProjectServiceProvider, @ServiceProvider, @ServicesTabNodeRegistration

The registry makes use of the FileSystem API to access the registered data.

FileSystem API

The FileSystem API provides stream-oriented access to flat and hierarchical structures, such as disk-based files on local or remote servers, memory-based files and even XML documents.

Items within the folders in the layer.xml file are not java.io.Files, but org.openide.filesystems.FileObjects. The differences between them are as follows:

java.io.File org.openide.filesystems.FileObject
Create with a constructor Get from the FileSystem
Can represent something that doesn't exist, such as new File('some/place/that/doesnt/exist') Typically represents something that exists
Cannot listen to changes FileChangeListener listens to changes to FileObject, as well as anything beneath the FileObject
Represents a file on disk Not necessarily a file on disk, could be in a database, FTP server, virtual, or anywhere else
No attributes Can have attributes, which are key-value pairs associated with a FileObject

Converting between common data types:

How do I get... Description
a java.io.File for a FileObject? FileUtil.toFile(FileObject fo)
a FileObject for a File? FileUtil.toFileObject(File f)
a DataObject for a FileObject? DataObject.find (theFileObject)
a FileObject for a DataObject? theDataObject.getPrimaryFile()
a Node for a DataObject? theDataObject.getNodeDelegate()
a DataObject for a Node? DataObject dob = (DataObject) theNode.getLookup().lookup (DataObject.class); if (dob != null) { //do something }
a reference to the System FileSystem? //Get the root: FileUtil.getConfigRoot() //Get a specific folder: FileUtil.getConfigFile('path/to/my/folder')

The NetBeans Platform provides a number of custom URLs for accessing things.

jar For representing entries inside JARs and ZIPs, including the root directory entry
nbres A resource loaded from a NetBeans module, e.g. nbres:/org/netbeans/modules/foo/resources/foo.dtd
nbresloc Same, but transparently localized and branded according to the usual conventions, e.g. nbresloc:/org/netbeans/modules/foo/resources/foo.html may actually load the same thing as nbres:/org/netbeans/modules/foo/resources/foonbja.html.
nbinst Loads installation files using InstalledFileLocator in installation directories, e.g. nbinst:///modules/ext/some-lib.jar may load the same thing as file:/opt/netbeans/ide4/modules/ext/some-lib.jar.
nbfs Refers to a file object in the System FileSystem (XML layers). For example, nbfs:/SystemFileSystem/Templates/Other/html.html refers to an HTML file template installed in the IDE>

Actions

Actions are pieces of code that are invoked when the user presses a menu item, toolbar button, or keyboard shortcut.

Type Description
Actions.alwaysEnabled An action that is always enabled. Typically, use this for 'File > Open' actions, for example.
Actions.context An action that is bound to a context. If an action should only be enabled under certain conditions, use this action.
Actions.callback An action with an assigned key used to find a delegate in the ActionMap of the active component.

When porting your existing application to the NetBeans Platform, you do not need to change your standard JDK

actions (AbstractAction, ActionListener, etc) in any way. Instead, you need to bind them to one of the classes listed above, using the layer.xml file to do so.

Actions.alwaysEnabled:

12
1
​
2
<file name='your-pkg-action-id.instance'>
3
   <attr name='instanceCreate'
4
        methodvalue='org.openide.awt.Actions.alwaysEnabled'/>
5
   <attr name='delegate'
6
        methodvalue='your.pkg.YourAction.factoryMethod'/>
7
   <attr name='displayName' bundlevalue='your.pkg.Bundle#key'/>
8
   <attr name='iconBase' stringvalue='your/pkg/YourImage.png'/>
9
<!-- if desired: <attr name='noIconInMenu' boolvalue='false'/>
10
<!-- if desired <attr name='asynchronous' boolvalue='true'/>
11
</file>
12
​

Actions.context:

15
1
​
2
<file name='action-pkg-ClassName.instance'>
3
   <attr name='instanceCreate'
4
      methodvalue='org.openide.awt.Actions.context'/>
5
   <attr name='type' stringvalue='org.netbeans.api.actions.Openable'/>
6
   <attr name='selectionType' stringvalue='ANY'/> (or EXACTLY_ONE)
7
   <attr name='delegate' newvalue='action.pkg.YourAction'/>
8
   <attr name='key' stringvalue='KeyInActionMap'/>
9
   <attr name='surviveFocusChange' boolvalue='false'/>
10
   <attr name='displayName' bundlevalue='your.pkg.Bundle#key'/>
11
   <attr name='iconBase' stringvalue='your/pkg/YourImage.png'/>
12
   <!-- if desired: attr name='noIconInMenu' boolvalue='false'/>
13
   <!-- if desired: <attr name='asynchronous' boolvalue='true'/>
14
</file>
15
​

Actions.callback:

13
1
​
2
<ile name='action-pkg-ClassName.instance'>
3
   <attr name='instanceCreate'
4
      methodvalue='org.openide.awt.Actions.callback'/>
5
   <attr name='key' stringvalue='KeyInActionMap'/>
6
   <attr name='surviveFocusChange' boolvalue='false'/>
7
   <attr name='fallback' newvalue='action.pkg.DefaultAction'/>
8
   <attr name='displayName' bundlevalue='your.pkg.Bundle#key'/>
9
    <attr name='iconBase' stringvalue='your/pkg/YourImage.png'/>
10
    <!-- if desired: <attr name='noIconInMenu' boolvalue='false'/>
11
    <!-- if desired: <attr name='asynchronous' boolvalue='true'/>
12
</file>
13
​

For all the details, see http://bits.netbeans.org/6.8/javadoc/org-openide-awt/org/openide/awt/Actions.html

An action is registered in the layer.xml file in the 'Actions' folder, within a folder reflecting its place in the action pool.

9
1
​
2
<folder name='Actions'>
3
     <folder name='Window'>
4
        <file name='your-pkg-action-id.instance'>
5
               ...
6
       </file>
7
   </folder>
8
</folder>
9
​

Depending on your business requirements, once you have actions registered in the layer.xml file, you need to bind them to menu items, toolbar buttons, and keyboard shortcuts.

Menu Items

11
1
​
2
<folder name='Menu'>
3
    <folder name='Window'>
4
        <file name='your-pkg-action-id.shadow'>
5
             <attr name='originalFile' stringvalue='Actions/Window/
6
             your-pkg-action-id.instance'/>
7
             <attr name='position' intvalue='50'/>
8
        </file>
9
   </folder>
10
</folder>
11
​

Toolbar Buttons

11
1
​
2
<folder name='Toolbars'>
3
    <folder name='Window'>
4
        <file name='your-pkg-action-id.shadow'>
5
            <attr name='originalFile' stringvalue='Actions/Window/
6
             your-pkg-action-id.instance'/>
7
            <attr name='position' intvalue='50'/>
8
        </file>
9
    </folder>
10
</folder>
11
​

Shortcuts

19
1
​
2
<folder name='Shortcuts'>
3
   <file name='M.shadow'>
4
       <attr name='originalFile'
5
   stringvalue='Actions/Edit/org-netbeans-modules-
6
  some-MyAction.instance'/>
7
  </file>
8
   <file name='D-M.shadow'>
9
      <attr name='originalFile'
10
         stringvalue='Actions/Edit/org-netbeans-modules
11
           some-CtrlMyAction.instance'/>
12
  </file>
13
   <file name='O-M.shadow'>
14
      <attr name='originalFile'
15
         stringvalue='Actions/Edit/org-netbeans-modules
16
           some-AltMyAction.instance'/>
17
  </file>
18
</folder>
19
​

As key code, use KeyEvent.VK_keycode without VK_ prefix, as described in Javadoc of org.openide.util.Utilities stringToKey() and keyToString() methods.

Nodes

A Node is a generic model for a business object, which it visualizes within an Explorer View. Each Node can have visual attributes, such as a display name, icon, and actions. The list of Nodes is below, which you can use as is or extend as needed:

Type Description
Node Base class for representing business objects to the user.
AbstractNode The usual base class for Node implementations.
DataNode Specialized Node class for wrapping a file and displaying it as a Node to the user.
BeanNode Specialized Node class that wraps a JavaBean and presents it to the user as a Node. It also provides simplistic access to property sheets.
FilterNode Specialized Node class that decorates an existing Node by adding/removing features to/from it.

A Node is a container for its own child Nodes. These classes create child Nodes:

ChildFactory Factory for creating child Nodes. Optionally, these can be created asynhronously, that is, when the user expands the Node.
Children.Keys Older version of ChildFactory. You should be able to replace any implementation of Children.Keys with ChildFactory.

Children.Array, Children.Map, Children.SortedArray, Children.SortedMap: These classes are less frequently used and are no longer well supported.

For all the details, see http://bits.netbeans.org/6.8/javadoc/org-openide-explorer.

Explorer Views

Visual Library

The NetBeans visual library is a generic widget and graph library, providing a collection of predefined widgets that integrate well with other NetBeans Platform objects, such as Nodes and windows. Below is the list of widgets provided by this library.

Type Description
Scene Provides the root element of the hierarchy of displayed widgets.
LayerWidget Provides a transparent surface, comparable to a JGlassPane.
ComponentWidget Provides a placeholder widget for AWT/Swing components.
ImageWidget Provides images to the scene.
LabelWidget Provides a label as a widget.
IconNodeWidget Provides an image and a label.
ConnectionWidget Provides connections between widgets, with anchors, control poins, and end points.
ConvolveWidget Provides coil/twist effect, i.e., a convolve filter to a child element.
LevelOfDetailsWidget Provides a container for widgets, with visibility and zoom features.
ScrollWidget/SwingScrollWidget Provides a scrollable area, with/ without JScrollBar as scroll bars.
SeparatorWidget Provides a space with thickness and orientation.

For all the details, see http://bits.netbeans.org/6.8/javadoc/org-netbeans-api-visual.

Dialogs

The NetBeans Dialogs API provides a number of standard dialogs for displaying standard messages for information, questions (such as 'Are you sure?', when saving), input, and error messages to the user. Each dialog comes with a standard appearance, buttons, and icons.

Type Description
Information Dialog NotifyDescriptor d = new NotifyDescriptor.Message('Text');
Question Dialog NotifyDescriptor d = new NotifyDescriptor.Confirmation('Title', 'Text');
Input Dialog NotifyDescriptor d = new NotifyDescriptor.InputLine('Title', 'Text');

Add the Dialogs API to your module and then use the table above to create dialogs as follows (in the example below, we display an information dialog):

5
1
​
2
NotifyDescriptor d = new NotifyDescriptor.Message('Text');
3
DialogDisplayer.getDefault().notify(d);
4
​
5
​

For all the details, see http://bits.netbeans.org/6.8/javadoc/org-openide-dialogs.

Hot Tip

The Dialogs API also provides a group of Wizard classes for multipage dialogs!

Other Useful NetBeans APIs

Type Description
org.apache.tools.ant.module.api.support.ActionUtils Used for running Ant targets.
org.openide.util.ImageUtilities Provides useful static methods for manipulation with images/icons, results are cached
org.openide.awt.HtmlBrowser.URLDisplayer Displays URLs, opens browsers, distinguishes embedded vs. external browsers.
org.netbeans.api.progress.ProgressHandle Integrates visualization of long running tasks with the NetBeans Platform progress bar.
org.openide.util.RequestProcessor Performs asynchronous threads in a dedicated thread pool.
org.openide.awt.UndoRedo Listens to editing changes and activates the 'Undo' and 'Redo' buttons.

Hot Tip

Explore the Utilities API (org.openide.util.jar) for many useful classes that all NetBeans Platform applications can use.
Section 6

NetBeans Platform Gotchas

The following are frequently asked questions, returning over and over again, with their answers:

FAQ Answers
What's the difference between a 'NetBeans Platform Application' and a 'Module Suite'? The former gives you a subset of the NetBeans Platform, the latter a subset of NetBeans IDE. Use the former when building on the NetBeans Platform, the latter when building on NetBeans IDE.
Why is my explorer view not synchronized with the Properties window? Because you need to add this line to the TopComponent constructor: associateLookup(ExplorerUtils.createLookup(em, getActionMap());
I created a palette but it isn't showing when I open the related TopComponent. Because your TopComponent is not in 'editor' mode.
Section 7

NetBeans Platform On-Line

Technical information on the NetBeans Platform is available on-line in many different forms. The most important of these are listed below:

Site URL
Homepage/td> http://platform.netbeans.org
Tutorials http://platform.netbeans.org/tutorials
NetBeans API javadoc http://bits.netbeans.org/6.8/javadoc/
Blogs http://planetnetbeans.org
FAQ http://wiki.netbeans.org/NetBeansDeveloperFAQ
Mailing List dev@platform.netbeans.org http://netbeans.org/platform/lists/dev/archive
Screencast http://platform.netbeans.org/tutorials/nbm-10-top-apis.html

This Refcard could not have been made without the technical insights provided by the following: Tim Boudreau, Tim Dudgeon, Jeremy Faden, Laurent Forêt, Jesse Glick, Manikantan, Ernie Rael, Antonio Vieiro and Tom Wheeler.

Like This Refcard? Read More From DZone

related article thumbnail

DZone Article

How to Make a Snake Game in Swing
related article thumbnail

DZone Article

How to Convert XLS to XLSX in Java
related article thumbnail

DZone Article

Automatic Code Transformation With OpenRewrite
related article thumbnail

DZone Article

Accelerating AI Inference With TensorRT
related refcard thumbnail

Free DZone Refcard

Java Application Containerization and Deployment
related refcard thumbnail

Free DZone Refcard

Introduction to Cloud-Native Java
related refcard thumbnail

Free DZone Refcard

Java 15
related refcard thumbnail

Free DZone Refcard

Java 14

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: