Package org.apache.flex.utilities.converter.air

Examples of org.apache.flex.utilities.converter.air.AirConverter.convert()


        } catch(ConverterException e) {
            System.out.println("Skipping generation of FLEX SDK");
        }
        try {
            final AirConverter airConverter = new AirConverter(sourceDirectory, targetDirectory);
            airConverter.convert();
        } catch(ConverterException e) {
            System.out.println("Skipping generation of AIR SDK");
        }
        try {
            final FlashConverter flashConverter = new FlashConverter(sourceDirectory, targetDirectory);
View Full Code Here


    public void downloadAndConvert(File targetDirectory, String version, PlatformType platformType) throws Exception {
        final DownloadRetriever downloadRetriever = new DownloadRetriever();
        final File airSDKSourceDirectory = downloadRetriever.retrieve(SdkType.AIR, version, platformType);

        final AirConverter airConverter = new AirConverter(airSDKSourceDirectory, targetDirectory);
        airConverter.convert();
    }

    public static void main(String[] args) throws Exception {
        if(args.length != 3) {
            System.out.println("Usage: AirDownloader {air-version} {target-directory} {platform-type}");
View Full Code Here

            }

            try {
                System.out.println("Generating AIR SDK");
                final AirConverter airConverter = new AirConverter(batchDirectory, targetDirectory);
                airConverter.convert();
            } catch(Exception e) {
                System.out.println("Skipping generation of AIR SDK");
            }

            try {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.