blob: f964438cf0bf6ce5f9f6946f16b545381d1e978c (
plain)
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
33
34
35
|
package com.jogamp.gluegen.cgram;
import antlr.ASTFactory;
import antlr.collections.AST;
/** This class extends ASTFactory to build instances
of class TNode */
public class TNodeFactory extends ASTFactory {
/** Create a new ampty AST node */
@Override
public AST create() {
return new TNode();
}
/** Create a new AST node from type and text */
@Override
public AST create(final int ttype, final String text) {
final AST ast = new TNode();
ast.setType(ttype);
ast.setText(text);
return ast;
}
/** Create a new AST node from an existing AST node */
@Override
public AST create(final AST ast) {
final AST newast = new TNode();
newast.setType(ast.getType());
newast.setText(ast.getText());
return newast;
}
}
|