Package com.agiletec.plugins.jpmyportalplus.aps.internalservlet.util

Examples of com.agiletec.plugins.jpmyportalplus.aps.internalservlet.util.FrameSelectItem


        Integer columnId = frame.getColumn();
        if (frame.isLocked() || null == columnId || i == this.getFrameWhereOpenSection().intValue()) continue;
        Widget widget = showletsToRender[i];
        if (columnId.equals(currentColumnId)) {
          if (widget != null && !widget.getType().getCode().equals(voidShowletCode)) {
            FrameSelectItem item = new FrameSelectItem(currentColumnId, columnId, widget, i, currentLang);
            selectItems.add(item);
          }
        } else {
          if (widget == null || widget.getType().getCode().equals(voidShowletCode)) {
            boolean check = this.check(columnId);
            if (!check) {
              FrameSelectItem item = new FrameSelectItem(currentColumnId, columnId, null, i, currentLang);
              selectItems.add(item);
            }
          }
        }
        if (i == this.getFrameWhereOpenSection() && null != widget) {
View Full Code Here


    return SUCCESS;
  }

  private boolean check(Integer columnId) {
    for (int i=0; i<this.getSelectItems().size(); i++) {
      FrameSelectItem frameSelectItem = this.getSelectItems().get(i);
      if (columnId.equals(frameSelectItem.getColumnIdDest())) {
        return true;
      }
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpmyportalplus.aps.internalservlet.util.FrameSelectItem

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.