Package de.innovationgate.wgpublisher.design

Examples of de.innovationgate.wgpublisher.design.DesignProviderCoreWrapper


    public WGDocumentCore wrapVariantCore(WGDocumentCore core) throws WGAPIException {
       
        if (_lookupVariants) {
            String name = (String) core.getMetaData(WGDesignDocument.META_NAME);
            if (name.endsWith(_variantSuffix)) {
                return new DesignProviderCoreWrapper(core, this, true, false);
            }
            else {
                return core;
            }
        }
View Full Code Here


            if (_cacheFailedLookups) {
                _failedLookups.add(failedKey);
            }
        }
        else {
            core = new DesignProviderCoreWrapper(core, this, false, false);
        }
       
        return core;
    }
View Full Code Here

    public WGDocumentCore wrapVariantCore(WGDocumentCore core) throws WGAPIException {
       
        if (_lookupVariants) {
            String name = (String) core.getMetaData(WGDesignDocument.META_NAME);
            if (name.endsWith(_variantSuffix)) {
                return new DesignProviderCoreWrapper(core, this, true, false);
            }
            else {
                return new DesignProviderCoreWrapper(core, this, false, false);
            }
        }
        else {
            return new DesignProviderCoreWrapper(core, this, false, false);
        }
       
    }
View Full Code Here

TOP

Related Classes of de.innovationgate.wgpublisher.design.DesignProviderCoreWrapper

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.