Package flash.swf.actions

Examples of flash.swf.actions.ConstantPool


        return a;
    }

    private ConstantPool decodeConstantPool() throws IOException
    {
        ConstantPool cpool = new ConstantPool();
        int count = reader.readUI16();
        cpool.pool = new String[count];
        for (int i = 0; i < count; i++)
        {
            cpool.pool[i] = reader.readString();
View Full Code Here

TOP

Related Classes of flash.swf.actions.ConstantPool

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.