Constructor. EJBQLASTFactory is a singleton, please use {@link #getInstance} to get the factory instance. this.theASTNodeTypeClass = EJBQLAST.class; this.theASTNodeType = this.theASTNodeTypeClass.getName();
this.theASTNodeTypeClass = EJBQLAST.class; this.theASTNodeType = this.theASTNodeTypeClass.getName();
Overwrites superclass method to create the correct AST instance. return new EJBQLAST();
return new EJBQLAST();
Overwrites superclass method to create the correct AST instance. return create((EJBQLAST)tr);
return create((EJBQLAST)tr);
Creates a clone of the specified EJBQLAST instance. try { return (tr==null) ? null : (EJBQLAST)tr.clone(); } catch(CloneNotSupportedException ex) { throw new EJBQLException( I18NHelper.getMessage(msgs, "ERR_UnexpectedExceptionClone"), ex); //NOI18N }
try { return (tr==null) ? null : (EJBQLAST)tr.clone(); } catch(CloneNotSupportedException ex) { throw new EJBQLException( I18NHelper.getMessage(msgs, "ERR_UnexpectedExceptionClone"), ex); //NOI18N }
Get an instance of EJBQLASTFactory.returnan instance of EJBQLASTFactory return factory;
return factory;