Package org.apache.flex.swc

Examples of org.apache.flex.swc.SWC


    private static final String LIBRARY_SWF = "library.swf";

    public SWCTarget(final FlexProject project, ITargetSettings targetSettings, ITargetProgressMonitor progressMonitor)
    {
        super(project, targetSettings, progressMonitor);
        swc = new SWC(targetSettings.getOutput());
        flexProject = project;
    }
View Full Code Here


     * parse DITA information found in the SWC.
     */
    public SWCReader(File swcFile, IPackageDITAParser packageDitaParser)
    {
        this.swcFile = swcFile;
        this.swc = new SWC(swcFile);

        if (!swcFile.exists() || !swcFile.isFile())
        {
            swc.addProblem(new LibraryNotFoundProblem(swcFile.getAbsolutePath()));
            return;
View Full Code Here

TOP

Related Classes of org.apache.flex.swc.SWC

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.