Package org.jboss.dashboard.ui.resources

Examples of org.jboss.dashboard.ui.resources.ResourceGallery


        }
        return element;
    }

    protected GraphicElement createDefaultGallery() throws Exception {
        ResourceGallery gallery = new ResourceGallery();
        gallery.setId("default");

        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        ZipOutputStream zos = new ZipOutputStream(bos);
        ZipEntry entry= new ZipEntry(ResourceGallery.DESCRIPTOR_FILENAME);
        zos.putNextEntry(entry);
        Properties prop = new Properties();
        //TODO: Make it external
        prop.setProperty("name.es","Im\u00e1genes subidas");
        prop.setProperty("name.en","Uploaded images");
        prop.setProperty("name.ca","Imatges pujades");
        prop.store(zos,"");
        zos.closeEntry();
        zos.close();
        gallery.setZipFile(bos.toByteArray());
        this.createOrUpdate(gallery);
        return gallery;
    }
View Full Code Here


        }
        return element;
    }

    protected GraphicElement createDefaultGallery() throws Exception {
        ResourceGallery gallery = new ResourceGallery();
        gallery.setId("default");

        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        ZipOutputStream zos = new ZipOutputStream(bos);
        ZipEntry entry= new ZipEntry(ResourceGallery.DESCRIPTOR_FILENAME);
        zos.putNextEntry(entry);
        Properties prop = new Properties();
        //TODO: Make it external
        prop.setProperty("name.es","Im\u00e1genes subidas");
        prop.setProperty("name.en","Uploaded images");
        prop.setProperty("name.ca","Imatges pujades");
        prop.store(zos,"");
        zos.closeEntry();
        zos.close();
        gallery.setZipFile(bos.toByteArray());
        this.createOrUpdate(gallery);
        return gallery;
    }
View Full Code Here

TOP

Related Classes of org.jboss.dashboard.ui.resources.ResourceGallery

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.