Package org.apache.flex.swc.io

Examples of org.apache.flex.swc.io.SWCReader


    protected ISWC createEntryValue(CacheStoreKeyBase key)
    {
        if (key instanceof SWCCacheKey)
        {
            final SWCCacheKey cacheKey = (SWCCacheKey)key;
            final SWCReader reader = new SWCReader(cacheKey.file, workspace.getASDocDelegate().getPackageDitaParser());
            final ISWC swc = reader.getSWC();
           
            assert swc != null : "Expect a SWC model object.";
            return swc;
        }
        else
View Full Code Here

TOP

Related Classes of org.apache.flex.swc.io.SWCReader

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.