1 package polyglot.ext.pao.ast;2 3 import polyglot.ast.JL;4 import polyglot.ext.jl.ast.AbstractDelFactory_c;5 import polyglot.ext.pao.extension.PaoInstanceofDel_c;6 7 /**8 * Delegate factory for the pao extension. The delegate factory 9 * is responsible for creating <code>JL</code> delegate objects, and is10 * used only by the <code>NodeFactory</code>. 11 */12 public class PaoDelFactory_c extends AbstractDelFactory_c {13 14 /**15 * @see AbstractDelFactory_c#delInstanceofImpl()16 */17 protected JL delInstanceofImpl() {18 return new PaoInstanceofDel_c();19 }20 }21