summaryrefslogtreecommitdiff
path: root/sources/scalac/ast/printer/TreePrinter.java
blob: ce6ae2bd18279d45cbc7f80795d7fe692dd7aa69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scalac.ast.printer;

import scalac.Global;
import scalac.CompilationUnit;
import scalac.ast.Tree;

/**
 * Interface for all abstract tree printers.
 *
 * @author Michel Schinz
 * @version 1.0
 */
public interface TreePrinter {
    public void begin();
    public void end();
    public void flush();

    public void print(Global global);
    public void print(CompilationUnit unit);

    public TreePrinter print(Tree tree);
    public TreePrinter print(String str);
    public TreePrinter println();
}