Package org.apache.xalan.xsltc.runtime

Examples of org.apache.xalan.xsltc.runtime.AbstractTranslet


      if (_class == null) defineTransletClasses();

      // The translet needs to keep a reference to all its auxiliary
      // class to prevent the GC from collecting them
      AbstractTranslet translet = (AbstractTranslet) _class[_transletIndex].newInstance();
            translet.postInitialization();
      translet.setTemplates(this);
      if (_auxClasses != null) {
          translet.setAuxiliaryClasses(_auxClasses);
      }
     
      return translet;
  }
  catch (InstantiationException e) {
View Full Code Here

TOP

Related Classes of org.apache.xalan.xsltc.runtime.AbstractTranslet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.