Package com.volantis.mcs.clientapp.ItemGalleryFeed

Examples of com.volantis.mcs.clientapp.ItemGalleryFeed.GalleryItem


       
        Iterator iter = items.iterator();
        openGalleryElement(out,attributes,"items");
        while(iter.hasNext()){
            openGalleryElement(out,new HashMap(),"item");
            GalleryItem item = (GalleryItem)iter.next();
            out.print("<widget:summary style='mcs-effect-style:fade; mcs-effect-duration:1s'>");
            out.print("<div>");
            out.print("<object src='/"+item.itemSummaryLink+"'><param name='mcs-transcode' value='false'/></object></div>");
            out.print("</widget:summary>");
            out.print("<widget:detail style='mcs-effect-style:slide-left; mcs-effect-duration:1s'>");
View Full Code Here

TOP

Related Classes of com.volantis.mcs.clientapp.ItemGalleryFeed.GalleryItem

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.