Package org.apache.flex.compiler.ant.config

Examples of org.apache.flex.compiler.ant.config.ConfigString


    {
        attribs = new ConfigVariable[]
        {
            new ConfigBoolean(new OptionSpec("compiler.fonts.flash-type")),
            new ConfigBoolean(new OptionSpec("compiler.fonts.advanced-anti-aliasing")),
            new ConfigString(new OptionSpec("compiler.fonts.local-fonts-snapshot")),
            new ConfigString(new OptionSpec("compiler.fonts.max-cached-fonts")),
            new ConfigString(new OptionSpec("compiler.fonts.max-glyphs-per-face"))
        };

        nestedAttribs = new ArrayList<NestedAttributeElement>();
        this.task = task;
    }
View Full Code Here


        this(null);
    }

    public Metadata(FlexTask task)
    {
        date = new ConfigString(new OptionSpec("metadata", "date"));
        description = new ConfigString(new OptionSpec("metadata", "description"));
        title = new ConfigString(new OptionSpec("metadata", "title"));

        nestedAttribs = new ArrayList<NestedAttributeElement>();
        this.task = task;
    }
View Full Code Here

              TOOL_CLASS_NAME, TOOL_METHOD_NAME, TOOL_FAILURE_METHOD_NAME);

        nestedAttribs = new ArrayList<IOptionSource>();
        nestedFileSets = new ArrayList<IOptionSource>();

        output = new ConfigString(new OptionSpec("output", "o"));
        includeClasses = new RepeatableConfigString(new OptionSpec("include-classes", "ic"));
    }
View Full Code Here

        while (it.hasNext())
            ((IOptionSource)it.next()).addToCommandline(cmdline);
       
        if (output != null)
            (new ConfigString(new OptionSpec("output", "o"), output)).addToCommandline(cmdline);
       
        // end of arguments
        cmdline.createArgument().setValue("--");

        // file-DEFAULT_SCRIPT_LIMITS may not be specified if building, e.g. a resource bundle SWF
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.ant.config.ConfigString

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.