Package flash.swf.types

Examples of flash.swf.types.ActionList


                     doAction1, doAction2);
    }

    public void testEqualsNegative()
    {
        DoAction doAction1 = new DoAction(new ActionList());
        doAction1.actionList.insert(0, new Branch(Branch.sactionJump));
        DoAction doAction2 = new DoAction(new ActionList());
        doAction2.actionList.insert(0, new Push(ActionFactory.UNDEFINED));
        assertFalse("doAction1 should not be equal to doAction2",
                    doAction1.equals(doAction2));
    }
View Full Code Here


                    doAction1.equals(doAction2));
    }

    public void testHashCodePositive()
    {
        DoAction doAction1 = new DoAction(new ActionList());
        DoAction doAction2 = new DoAction(new ActionList());
        assertEquals("the two hash codes should be equal",
                     doAction1.hashCode(), doAction2.hashCode());
    }
View Full Code Here

                     doAction1.hashCode(), doAction2.hashCode());
    }

    public void testHashCodeNegative()
    {
        DoAction doAction = new DoAction(new ActionList());
        DoInitAction doInitAction = new DoInitAction();
        assertFalse("the two hash codes should not be equal",
                    doAction.hashCode() == doInitAction.hashCode());
    }
View Full Code Here

TOP

Related Classes of flash.swf.types.ActionList

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.