Package cn.com.byd.compose.beans

Examples of cn.com.byd.compose.beans.Status


    List<? super Object> items = modules.getItems();
    if (items == null || items.isEmpty()) {
      return;
    }
    int idx = 0;
    Status status = modules.getStatus();
    status.setTotal(items.size());
    for (Object obj : items) {
      status.setIndex(idx++);
      //保存临时的变量
      methodContext.put(modules.getItemProperty(), obj);
      // 保存临时变量的状态
      methodContext.put(modules.getStatusId(), status);
      runCurrentModules(modules.getCurrentModules(), methodContext);
View Full Code Here

TOP

Related Classes of cn.com.byd.compose.beans.Status

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.