NetBeans Java Language Infrastructure Tutorial

In this tutorial, you will be introduced to aspects of the new NetBeans 6.0 "Retouche" APIs. Prior to 6.0, the Java language infrastructure that supported the Java editor, including Java code generation and Java refactoring, was based on something called "JMI for Java" (also known as "MDR"). JMI for Java had a few architectural issues such as single-read lock. In other words, a lock had to be acquired just to read information from its model, while this is normally required when doing write actions only. Over a period of a few years, JMI was debugged and improved in terms of performance. But another issue was that it used its own internal copy of the Java parser, which meant it had its own approach to interpreting Java source, which differed from the JDK's Java compiler. With the introduction of generics in JDK 5, which introduced a lot more complicated and subtle Java constructs, that divergence became harder to manage. Therefore, because of JMI's performance issues and because a formal language model was developed to make the JDK Java compiler a programmatically accessible tool, the JMI for Java was replaced with a new approach, based on the JDK Java compiler.

That is when Retouche, a French word meaning "touch up", was born. Retouche is the new and fast Java language infrastructure in NetBeans IDE, capable of supporting all the cool Java editor features that have been realised in NetBeans 6.0. At the heart of it, Retouche wraps an instance of the JDK Java compiler and consumes its artifacts, such as the abstract syntax tree (also known as "AST") and the symbolic resolutions that are emitted in various phases of parsing. When working with Retouche, you need to deal with some of these artifacts. The Compiler Tree API is one of these, for example. The package naming of classes in the Compiler Tree API is com.sun.*. Therefore, technically, this is a non-JDK API, but it does come from the JDK Java compiler. Another example of the JDK Java compiler's artifacts that you work with in relation to Retouche is the formal language model in the JDK APIs, provided by the javax.language.model.* packages.

This tutorial presents an introductory scenario of using the new "Retouche" approach in NetBeans IDE 6.0.

Contents

Content on this page applies to NetBeans IDE 6.0

The following resources have been provided specifically to help you get acquainted with the Retouche APIs:

For more information on creating NetBeans modules, see the NetBeans Development Project home on the NetBeans website. If you have questions, visit the NetBeans Developer FAQ or use the feedback link at the bottom of this page.


Installing the Software

Before you begin, you need to install the following software on your computer:

Note: If you want to refer to the completed module project, you can download it here.

Setting Up the Module

In this section, we use wizards to create a module project and to set dependencies on relevant NetBeans modules.

  1. Choose File > New Project. In the New Project wizard, choose NetBeans Plug-in Modules under Categories and Module Project under Projects, as shown below:

    copy fqn

    Click Next.

  2. Type CopyFQN in Project Name and set Project Location to an appropriate folder on your disk. If they are not selected, select Standalone Module and Set as Main Project. Click Next.
  3. Type org.netbeans.modules.copyfqn in Code Name Base and CopyFQN in Module Display Name. Click Finish.
  4. Right-click the project, choose Properties, click Libraries in the Project Properties dialog box and declare a dependency on the following APIs:

    You should now see this:

    copy fqn

    Click OK.

Creating a Context-Sensitive Toolbar Button

In this section, we create a context-aware button in the toolbar. This has nothing to do with the new Retouche APIs, but gives us a user interface element for interacting with our implementation of the Retouche APIs, later in this tutorial.

  1. Right-click the module project, choose New > Other and choose Action from the Module Development category. Click Next.
  2. Choose Conditionally Enabled, and keep all the defaults, as shown below, so that the action will be sensitive to DataObjects and so that it will only be enabled when one DataObject is selected.

    cookie action

    Click Next.

  3. Choose Edit in Category and Edit in Toolbar.

    You should now see the following:

    gui registration

    Click Next.

  4. Type CopyFQNAction in Class Name and CopyFQN in Display Name.
  5. Browse to an icon that will be displayed in the toolbar button. For example, use the one that will be used throughout this tutorial:

    icon

    Click Finish.

    You should now see the following code in your new CopyFQNAction.java class:

    public final class CopyFQNAction extends CookieAction {
        
        protected void performAction(Node[] activatedNodes) {
            DataObject dataObject = activatedNodes[0].getLookup().lookup(org.openide.loaders.DataObject.class);
            // TODO use dataObject
        }
        
        protected int mode() {
            return CookieAction.MODE_EXACTLY_ONE;
        }
        
        public String getName() {
            return NbBundle.getMessage(CopyFQNAction.class, "CTL_CopyFQNAction");
        }
        
        protected Class[] cookieClasses() {
            return new Class[] {
                DataObject.class
            };
        }
        
        protected String iconResource() {
            return "org/netbeans/modules/copyfqn/icon.png";
        }
        
        public HelpCtx getHelpCtx() {
            return HelpCtx.DEFAULT_HELP;
        }
        
        protected boolean asynchronous() {
            return false;
        }
        
    }

    Note: All the work we will do in the remainder of this tutorial will focus on the performAction() method above.

    You have now created an action that is sensitive to data objects. Let's see what that means right away.

  6. Right-click the module and choose Install.

    Once the module is installed, you should see a new button in the toolbar.

  7. Select a node in the Projects window and then look at the button in the toolbar. If you select a node representing a file or folder (including a package) the button is enabled, as shown here:

    icon

    However, if you select a node representing a project, the button is disabled, as shown below:

    icon

In the next section, we will go further than distinguishing between project nodes and file/folder nodes—we will distinguish between file nodes for Java classes versus all other kinds of file nodes.

Identifying Java Source Files

In this section, we begin using one of the new "Retouche" APIs, called Java Source. Here we use the JavaSource class, which represents a Java source file. We return an instance of this class for the file object associated with our data object. If null is returned, the file object is not a Java source file. We display the result in the status bar, when the button is clicked while a file is selected.

  1. Fill out the performAction() method by adding the lines highlighted below:
    protected void performAction(Node[] activatedNodes) {
        DataObject dataObject = activatedNodes[0].getLookup().lookup(org.openide.loaders.DataObject.class);
        // TODO use dataObject
    
        FileObject fileObject = dataObject.getPrimaryFile();
    
        JavaSource javaSource = JavaSource.forFileObject(fileObject);
        if (javaSource == null) {
            StatusDisplayer.getDefault().setStatusText("Not a Java file: " + fileObject.getPath());
        } else {
            StatusDisplayer.getDefault().setStatusText("Hurray! A Java file: " + fileObject.getPath());
        }
    }
  2. Check that your import statements are as follows:
    import org.netbeans.api.java.source.JavaSource;
    import org.openide.awt.StatusDisplayer;
    import org.openide.filesystems.FileObject;
    import org.openide.loaders.DataObject;
    import org.openide.nodes.Node;
    import org.openide.util.HelpCtx;
    import org.openide.util.NbBundle;
    import org.openide.util.actions.CookieAction;
  3. Install the module again.
  4. Select a file node and press the button.

    Notice that the "Hurray!" message only appears when you select a Java file, as shown below:

    message-java-file-60

    An alternative approach would be to only enable the button when a Java file is selected. To implement this, override the CookieAction.enable() method as follows:

    @Override
    protected boolean enable(Node[] activatedNodes) {
        if (super.enable(activatedNodes)) {
            DataObject dataObject = activatedNodes[0].getLookup().lookup(org.openide.loaders.DataObject.class);
            FileObject fileObject = dataObject.getPrimaryFile();
            JavaSource javaSource = JavaSource.forFileObject(fileObject);
            if (javaSource == null) {
                return false;
            }
            return true;
        }
        return false;
    }

    The above method filters out any file that is not a Java file. As a result, the button is only enabled if the current file is a Java file.

Determining Open State

In this section, we are introduced to our first explicitly invoked "Retouche" task. Such a task is provided by the JavaSource class's runUserActionTask method. A task of this kind lets you control the phases of a parsing process, which is applicable when you want to respond immediately to the user's input. Everything done within the task is done as a single unit. In our case, we want the invocation of our action, represented by a button in the toolbar, to be immediately followed by the display of a text in the status bar.

  1. Replace the "Hurray!" message in the performAction() method with this line:
    javaSource.runUserActionTask(new Task<CompilationController>());

    You should now see a lightbulb in the editor's left sidebar, as shown here:

    icon

  2. Click the lightbulb. Alternatively, put the caret in the line and press Alt-Enter. Then let the IDE implement the method.
  3. Tweak the method slightly, by adding a true boolean to the end of the method and letting the IDE wrap the snippet in a try/catch block. At the end, the result should be as follows:
    protected void performAction(Node[] activatedNodes) {
        DataObject dataObject = activatedNodes[0].getLookup().lookup(org.openide.loaders.DataObject.class);
        // TODO use dataObject
    
        FileObject fileObject = dataObject.getPrimaryFile();
    
        JavaSource javaSource = JavaSource.forFileObject(fileObject);
        if (javaSource == null) {
            StatusDisplayer.getDefault().setStatusText("Not a Java file: " + fileObject.getPath());
         } else {
         
                try {
                    javaSource.runUserActionTask(new Task<CompilationController>() {
    
                        public void run(CompilationController arg0) throws Exception {
                            throw new UnsupportedOperationException("Not supported yet.");
                        }
                    }, true);
                } catch (IOException ex) {
                    Exceptions.printStackTrace(ex);
                }
                
         }
    
    }
  4. Implement the run() method as follows:
    public void run(CompilationController compilationController) throws Exception {
         
          compilationController.toPhase(Phase.ELEMENTS_RESOLVED);
          
          Document document = compilationController.getDocument();
          if (document != null) {
             StatusDisplayer.getDefault().setStatusText("Hurray, the Java file is open!");
          } else {
             StatusDisplayer.getDefault().setStatusText("The Java file is closed!");
          }
          
    }
  5. Make sure that your import statements are as follows:
    import java.io.IOException;
    import javax.swing.text.Document;
    import org.netbeans.api.java.source.CompilationController;
    import org.netbeans.api.java.source.JavaSource;
    import org.netbeans.api.java.source.JavaSource.Phase;
    import org.netbeans.api.java.source.Task;
    import org.openide.awt.StatusDisplayer;
    import org.openide.filesystems.FileObject;
    import org.openide.loaders.DataObject;
    import org.openide.nodes.Node;
    import org.openide.util.Exceptions;
    import org.openide.util.HelpCtx;
    import org.openide.util.NbBundle;
    import org.openide.util.actions.CookieAction;
  6. Install the module again.
  7. Select a file node and press the button.

    Notice that the "Hurray!" message only appears when you select a Java file that is open in the Java editor, as shown here:

    message-java-file-open-60

Detecting the Element Under the Caret

In this section, now that we know that we are dealing with a Java file and that it is open, we can begin detecting the type of element that is under the caret at any given time.

  1. Begin by declaring a dependency on the I/O APIs, so that we can print our results to the Output window.
  2. Replace the "Hurray!" message in the run() method with the lines highlighted below:
    public void run(CompilationController compilationController) throws Exception {
        
        compilationController.toPhase(Phase.ELEMENTS_RESOLVED);
        Document document = compilationController.getDocument();
        
        if (document != null) {
            new MemberVisitor(compilationController).scan(compilationController.getCompilationUnit(), null);
        } else {
            StatusDisplayer.getDefault().setStatusText("The Java file is closed!");
        }
        
    }

  3. And here is the MemberVisitor class, which is defined as an inner class of our CopyFQNAction class:
    private static class MemberVisitor extends TreePathScanner<Void, Void> {
    
        private CompilationInfo info;
    
        public MemberVisitor(CompilationInfo info) {
            this.info = info;
        }
    
        @Override
        public Void visitClass(ClassTree t, Void v) {
            Element el = info.getTrees().getElement(getCurrentPath());
            if (el == null) {
                StatusDisplayer.getDefault().setStatusText("Cannot resolve class!");
            } else {
                TypeElement te = (TypeElement) el;
                List enclosedElements = te.getEnclosedElements();
                InputOutput io = IOProvider.getDefault().getIO("Analysis of "  
                            + info.getFileObject().getName(), true);
                for (Element enclosedElement : enclosedElements) {
                    if (enclosedElement.getKind() == ElementKind.CONSTRUCTOR) {
                        io.getOut().println("Constructor: " 
                            + enclosedElement.getSimpleName());
                    } else if (enclosedElement.getKind() == ElementKind.METHOD) {
                        io.getOut().println("Method: " 
                            + enclosedElement.getSimpleName());
                    } else if (enclosedElement.getKind() == ElementKind.FIELD) {
                        io.getOut().println("Field: " 
                            + enclosedElement.getSimpleName());
                    } else {
                        io.getOut().println("Other: " 
                            + enclosedElement.getSimpleName());
                    }
                }
                io.getOut().close();
            }
            return null;
        }
    
    }
  4. Install the module again, and open a Java class. Then click the button and notice that the constructors, methods, and fields are written to the Output window, as shown below:

    message-constructor-60

  5. Next, instead of printing all the elements to the Output window, we will only print the element under the caret. Only replace the visitClass method, with the code highlighted below:
    private static class MemberVisitor extends TreePathScanner<Void, Void> {
    
        private CompilationInfo info;
    
        public MemberVisitor(CompilationInfo info) {
            this.info = info;
        }
    
        @Override
        public Void visitClass(ClassTree t, Void v) {
            try {
                JTextComponent editor = EditorRegistry.lastFocusedComponent();
                if (editor.getDocument() == info.getDocument()) {
                    int dot = editor.getCaret().getDot();
                    TreePath tp = info.getTreeUtilities().pathFor(dot);
                    Element el = info.getTrees().getElement(tp);
                    if (el == null) {
                        StatusDisplayer.getDefault().setStatusText("Cannot resolve class!");
                    } else {
                        InputOutput io = IOProvider.getDefault().getIO("Analysis of " 
                                + info.getFileObject().getName(), true);
                        if (el.getKind() == ElementKind.CONSTRUCTOR) {
                            io.getOut().println("Hurray, this is a constructor: " 
                                + el.getSimpleName());
                        } else if (el.getKind() == ElementKind.METHOD) {
                            io.getOut().println("Hurray, this is a method: " 
                                + el.getSimpleName());
                        } else if (el.getKind() == ElementKind.FIELD) {
                            io.getOut().println("Hurray, this is a field: " 
                                + el.getSimpleName());
                        } else {
                            io.getOut().println("Hurray, this is something else: " 
                                + el.getSimpleName());
                        }
                        io.getOut().close();
                    }
                }
            } catch (IOException ex) {
                Exceptions.printStackTrace(ex);
            }
            return null;
        }
    
    }
  6. Install the module.
  7. Put the caret somewhere within your Java code and press the button. The Output window displays information about the code under the caret, if applicable. For example, if you press the button after you put the caret in a method, as shown below, the Output window tells you that the caret is in a method:

    message-constructor-60

  8. But we can detect a lot more than just the name of the element under the caret. In the visitClass method, replace the lines in bold below:
    @Override
    public Void visitClass(ClassTree t, Void v) {
        try {
            JTextComponent editor = EditorRegistry.lastFocusedComponent();
            if (editor.getDocument() == info.getDocument()) {
                int dot = editor.getCaret().getDot();
                TreePath tp = info.getTreeUtilities().pathFor(dot);
                Element el = info.getTrees().getElement(tp);
                if (el == null) {
                    StatusDisplayer.getDefault().setStatusText("Cannot resolve class!");
                } else {
                    InputOutput io = IOProvider.getDefault().getIO("Analysis of " 
                        + info.getFileObject().getName(), true);
                    String te = null;
                    if (el.getKind() == ElementKind.CONSTRUCTOR) {
                        te = ((TypeElement) ((ExecutableElement) el).getEnclosingElement()).getQualifiedName().toString();
                        io.getOut().println("Hurray, this is a constructor's qualified name: " + te);
                    } else if (el.getKind() == ElementKind.METHOD) {
                        te = ((ExecutableElement) el).getReturnType().toString();
                        io.getOut().println("Hurray, this is a method's return type: " + te);
                    } else if (el.getKind() == ElementKind.FIELD) {
                        te = ((VariableElement) el).asType().toString();
                        io.getOut().println("Hurray, this is a field's type: " + te);
                    } else {
                        io.getOut().println("Hurray, this is something else: " 
                            + el.getSimpleName());
                    }
                    io.getOut().close();
                }
            }
        } catch (IOException ex) {
            Exceptions.printStackTrace(ex);
        }
        return null;
    }
  9. Install the module again. This time, when you click the button while the caret is over a constructor, method, or field, more detailed information about the element is printed to the Output window.

At this stage, we are able to detect whether we are dealing with a Java file, whether the document is open, and the type of element that is under the caret. But what can we do with this information? In the next section, a simple scenario is presented where our newly acquired knowledge will prove useful.

Doing Something Useful

In this section, we set the contents of the clipboard, provided by java.awt.datatransfer.Clipboard, based on the element under the caret. When you press the button, the element under the caret will be put in the clipboard, so that you can paste the content elsewhere in your code.

  1. Begin by declaring the clipboard and defining a constructor:
    private Clipboard clipboard;
    
    public CopyFQNAction() {
        clipboard = Lookup.getDefault().lookup(ExClipboard.class);
        if (clipboard == null) {
            clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
        }
    }
  2. Next, replace each "Hurray!" line in your code, with a line that sends the element as a string to a method that we will define in the next step. We will call our method setClipboardContents. Therefore, for example, replace the first "Hurray!" line with the following:
    setClipboardContents(te);

    Do the same for the other "Hurray!" lines, making sure to pass the correct string to the method.

    Note: Because you have not defined the setClipboardContents method yet, each of the lines you add in this step is underlined in red. In the next step, we add the new method.

  3. Finally, add the following to the end of the class. This method receives the string and puts it in the clipboard:
    private void setClipboardContents(String content) {
        if (clipboard != null) {
            if (content == null) {
                StatusDisplayer.getDefault().setStatusText("");
                clipboard.setContents(null, null);
            } else {
                StatusDisplayer.getDefault().setStatusText("Clipboard: " + content);
                clipboard.setContents(new StringSelection(content), null);
            }
        }
    }

Send Us Your Feedback

Next Steps

For more information about creating and developing NetBeans Module, see the following resources: