Package br.com.starcode.trex.types

Examples of br.com.starcode.trex.types.ForStatementData


      String varName = m1.group(1);
     
      //position of range information
      int pos = expression.lastIndexOf(')');
     
      return new ForStatementData(
          expression.substring(1, pos + 1),
          varName,
          parseRange(expression.substring(pos + 1)));
     
    }
View Full Code Here


  }
 
  private int processRow(Row row) {
   
    //loop for special expression statements (@for and @if for now)
    ForStatementData forData = null;
    IfStatementData ifData = null;
    Cell forCell = null;
    Cell ifCell = null;
    for (Cell cell : row) {
     
View Full Code Here

TOP

Related Classes of br.com.starcode.trex.types.ForStatementData

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.