Package org.apache.flex.utilities.converter.retrievers.types

Examples of org.apache.flex.utilities.converter.retrievers.types.PlatformType


            return;
        }

        final String version = args[0];
        final File targetDirectory = new File(args[1]);
        final PlatformType platformType = PlatformType.valueOf(args[2]);
        if(platformType == null) {
            throw new Exception("Unknown platform type: " + args[2]);
        }

        new AirDownloader().downloadAndConvert(targetDirectory, version, platformType);
View Full Code Here

TOP

Related Classes of org.apache.flex.utilities.converter.retrievers.types.PlatformType

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.