view bindings/as3/ext/asunit/util/Iterator.as @ 737:18974af682cf

* Tweaks to event strings for safety * Fixed mis-firing event in Bridge * Added a simple example * Added packaging
author mas01mj
date Thu, 16 Sep 2010 11:39:52 +0000
parents 3a0b9700b3d2
children
line wrap: on
line source
package asunit.util {

    [ExcludeClass]
    public interface Iterator {
        function next():Object;
        function hasNext():Boolean;
        function reset():void;
    }
}