Package de.agilecoders.wicket.core.markup.html.bootstrap.carousel

Examples of de.agilecoders.wicket.core.markup.html.bootstrap.carousel.CarouselImage


     * @param markupId The component id
     * @return new carousel component
     */
    private Component newCarousel(String markupId) {
        final List<ICarouselImage> images = Lists.<ICarouselImage>newArrayList(
                new CarouselImage("http://placehold.it/820x480", "Header 1", "Description 1"),
                new CarouselImage("http://placehold.it/820x480", "Header 2"),
                new CarouselImage("http://placehold.it/820x480")
        );

        return new Carousel(markupId, images);
    }
View Full Code Here

TOP

Related Classes of de.agilecoders.wicket.core.markup.html.bootstrap.carousel.CarouselImage

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.