Package dtool.sourcegen.TemplatedSourceProcessorParser

Examples of dtool.sourcegen.TemplatedSourceProcessorParser.TspElement


  protected void processCaseContents(ProcessingState sourceCase, ICopyableIterator<TspElement> elementStream)
    throws TemplatedSourceException {
    assertNotNull(sourceCase);
   
    while(elementStream.hasNext()) {
      TspElement tspElem = elementStream.next();
      elementStream = elementStream.optimizedSelf();
     
      if(tspElem instanceof TspExpansionElement) {
        TspExpansionElement expansionElem = (TspExpansionElement) tspElem;
       
View Full Code Here

TOP

Related Classes of dtool.sourcegen.TemplatedSourceProcessorParser.TspElement

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.