package polyglot.ext.pao.ast; import polyglot.ext.jl.ast.NodeFactory_c; /** * <code>NodeFactory</code> implementation for the pao extension. * The node factory is responsible for creating AST nodes. */ public class PaoNodeFactory_c extends NodeFactory_c { public PaoNodeFactory_c() { // Set the ExtFactory to be PaoExtFactory_c, // and the DelFactory to be PaoDelFactory_c. // this will ensure that the correct Ext and Del // objects are created for the pao extension. super(new PaoExtFactory_c(), new PaoDelFactory_c()); } }