vote up 0 vote down star
1

In ActionScript (AS3) how do I find all the classes that implement a particular interface?

flag
Are you asking in reference to Flex/AIR API classes, or any classes you've created or that are a part of third party components? If it's just the Flex & AIR APIs then the online doc's cover it for each interface. livedocs.adobe.com/flex/3/… – John Lemberger Sep 10 at 2:55
1  
What are you trying to do? Given IFoo, you want to generate a list of classes that have implemented it? What problem are you trying to solve? There might be a better solution. – Glenn Sep 10 at 4:15
If u want to use it in ur as3 code, u wud have to read the source files and parse them urself. If u just want to know the class names for reference, use ASDoc on the project and goto the page of corresponding interface. See for example: livedocs.adobe.com/flex/3/… – Amarghosh Sep 10 at 6:15
I need to do this at runtime. It seems that I might be able to use this thing: etcs.ru/pre/getDefinitionNamesSource to do what I need. I'll play around and report back. – James Ward Sep 10 at 23:42

2 Answers

vote up 0 vote down

In OOP terms, you never want to be able to do this: the primary characteristic of interfaces is they are terms of a contract. Any class can choose to fulfill that contract and be able to say "I implement this interface".

Any code that references an instance of the interface don't care what class actually implements it: they don't have to; that's the really cool part of interfaces.

But if you want to find out, grep for "implements IFred"

Cheers

link|flag
vote up 0 vote down check

I've figured out how to do this and posted a demo on my blog. It uses the getDefinitionNames library mentioned in the comments above.

link|flag

Your Answer

Get an OpenID
or

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