Example usage for org.antlr.v4.gui Trees inspect

List of usage examples for org.antlr.v4.gui Trees inspect

Introduction

In this page you can find the example usage for org.antlr.v4.gui Trees inspect.

Prototype

public static Future<JFrame> inspect(Tree t, Parser parser) 

Source Link

Document

Call this method to view a parse tree in a dialog box visually.

Usage

From source file:dbms.ANTGui.java

public void mostrarArbol() {
    Trees.inspect(contexto, parser);

}