package com.exanimo.utils { /** * * .. * * @langversion ActionScript 3 * @playerversion Flash 9.0.0 * * @author Matthew Tretter * @since 2008.03.17 * */ public interface IRuntimeType { function describes(obj:Object):Boolean; function describesType(type:Object):Boolean; function equals(obj:Object):Boolean; } }