Mercurial > hg > audiodb
view bindings/as3/ext/asunit/util/Iterator.as @ 738:d9f263d95b64
Added packaged SWC
author | mas01mj |
---|---|
date | Thu, 16 Sep 2010 11:40:23 +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; } }