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

Examples of com.agiletec.plugins.jpmyportalplus.aps.tags.util.WidgetCheckInfo


            for (int i = 0; i < frames.length; i++) {
                Frame frame = frames[i];
                if (!frame.isLocked()) {
                    Widget showlet = showletsToRender[i];
                    if (null != showlet && allowedShowlets.contains(showlet.getType().getCode())) {
                        WidgetCheckInfo info = new WidgetCheckInfo(showlet.getType(), true, currentLang);
                        allowedShowlets.remove(showlet.getType().getCode());
                        checkInfos.add(info);
                    }
                }
            }
            for (int i = 0; i < allowedShowlets.size(); i++) {
                String code = allowedShowlets.get(i);
                WidgetType type = customizableShowlets.get(code);
                WidgetCheckInfo info = new WidgetCheckInfo(type, false, currentLang);
                checkInfos.add(info);
            }
            BeanComparator comparator = new BeanComparator("title");
            Collections.sort(checkInfos, comparator);
            this.pageContext.setAttribute(this.getVar(), checkInfos);
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpmyportalplus.aps.tags.util.WidgetCheckInfo

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.