Package de.innovationgate.wgpublisher.design.fs

Examples of de.innovationgate.wgpublisher.design.fs.ScriptMetadata


        if (!getCodeFile().exists()) {
            return;
        }
       
       
        ScriptMetadata metaData = (ScriptMetadata) readMetaData();
        String code = readCode(metaData);
       
        WGCSSJSModule mod = (WGCSSJSModule) db.getDocumentByDocumentKey(getDocumentKey());
        if (mod == null) {
            WGDocumentKey key = new WGDocumentKey(getDocumentKey());
            mod = db.createCSSJSModule(key.getName(), getCodeType());
        }
        mod.setCode(code);
        metaData.writeToDocument(mod);
        doSaveDocument(mod);
       
        resetUpdateInformation();

    }
View Full Code Here

TOP

Related Classes of de.innovationgate.wgpublisher.design.fs.ScriptMetadata

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.