summaryrefslogtreecommitdiff
path: root/tool/src/org/antlr/v4/gui/TreeTextProvider.java
blob: 59c6c381e3826488d49033f0c5bb84cd954073ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
 * Use of this file is governed by the BSD 3-clause license that
 * can be found in the LICENSE.txt file in the project root.
 */

package org.antlr.v4.gui;

import org.antlr.v4.runtime.tree.Tree;

public interface TreeTextProvider {
	String getText(Tree node);
}