Package net.datacrow.core.modules.xml

Examples of net.datacrow.core.modules.xml.XmlModuleWriter


            net.datacrow.util.zip.ZipFile zf = new net.datacrow.util.zip.ZipFile(DataCrow.moduleDir, filename);
           
            module.setIcon16Filename("icon16.png");
            module.setIcon32Filename("icon32.png");
           
            XmlModuleWriter writer = new XmlModuleWriter(module);
            byte[] xml  = writer.getXML();
           
            writer.close();
           
            zf.addEntry("module.xml", xml);
            zf.addEntry("icon16.png", icon16);
            zf.addEntry("icon32.png", icon32);
            zf.close();
View Full Code Here

TOP

Related Classes of net.datacrow.core.modules.xml.XmlModuleWriter

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.