vote up 1 vote down star

In ActionScript 3, you can figure out whether object O is of class C or of a class that extends or implements class C (directly or indirectly) using...

if (O is C) {
    ...
}

What I want to do is to test whether class CC extends or implements class C (directly or indirectly), without having to instantiate an object.

In Java, you would use...

if (C.isAssignableFrom (CC)) {
    ...
}

http://java.sun.com/javase/6/docs/api/java/lang/Class.html#isAssignableFrom%28java.lang.Class%29

How about ActionScript 3?

Thanks!

flag

3 Answers

vote up 1 vote down check

You can call describeType() on CC directly. You do not have to instantiate the object.

var typeXML:XML = describeType(CC);
if(typeXML.factory.extendsClass.(@type=="C").length() > 0)
{
...

It's not as clean as I'd like but I can't find anything better.

(via Amarghosh: [http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/package.html#describeType%28%29%5D%5B1%5D )

link|flag
Great, thanks. Coming from the rich Java 6 API, I find myself having to reinvent the wheel all the time with Flash/Flex, grrr ;-). – jmdecombe Nov 10 at 15:38
vote up 0 vote down

Alternatively, if you use as3commons-reflect package (which is very, very useful, by the way), you can call:

ClassUtils.getImplementedInterfaces(CC)
link|flag
vote up 1 vote down

I think , you will have to manually parse through the XML object returned by flash.utils.describeType

link|flag
There is not a way to determine the type simply by looking at the class (except by using flash.utils.describeType). You can only do this by instantiating the object first. – Mims H. Wright Nov 7 at 20:34
livedocs.adobe.com/flash/9.0/…() – Amarghosh Nov 9 at 6:38
*parentheses are part of the link – Amarghosh Nov 9 at 8:28
Thank you for the pointer to that method. – jmdecombe Nov 10 at 15:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.