Package org.apache.flex.swf.tags

Examples of org.apache.flex.swf.tags.ProductInfoTag


        // EnableDebugger2 tag       
        if (enableDebug)
            writeTag(new EnableDebugger2Tag("NO-PASSWORD"));

        // ProductInfo tag for Flex compatibility
        ProductInfoTag productInfo = swf.getProductInfo();
        if (productInfo != null)
            writeTag(productInfo);

        // ScriptLimits tag
        final ScriptLimitsTag scriptLimitsTag = swf.getScriptLimits();
View Full Code Here


                bitStream.readSI32());
        final byte majorVersion = bitStream.readSI8();
        final byte minorVersion = bitStream.readSI8();
        final long build = bitStream.readSI64();
        final long compileDate = bitStream.readSI64();
        return new ProductInfoTag(
                product,
                edition,
                majorVersion,
                minorVersion,
                build,
View Full Code Here

     * @param swf the swf model to update.
     */
    public void addProductInfoToSWF(ISWF swf)
    {
        // Add product info to the swf.
        ProductInfoTag productInfo = new ProductInfoTag(Product.FLEX,
                Edition.NONE,
                (byte)Integer.parseInt(VersionInfo.FLEX_MAJOR_VERSION),
                (byte)Integer.parseInt(VersionInfo.FLEX_MINOR_VERSION),
                VersionInfo.getBuildLong(),
                0);
View Full Code Here

TOP

Related Classes of org.apache.flex.swf.tags.ProductInfoTag

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.