Package org.richfaces.demo.tables.model.slides

Examples of org.richfaces.demo.tables.model.slides.Picture


    private List<Picture> pictures;

    public SlidesBean() {
        pictures = new ArrayList<Picture>();
        for (int i = 1; i <= FILES_COUNT; i++) {
            pictures.add(new Picture(PATH_PREFIX + PIC_NAME + i + FILE_EXT, PIC_NAME + i));
        }
    }
View Full Code Here

TOP

Related Classes of org.richfaces.demo.tables.model.slides.Picture

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.