Introduction

cheap cialis pill certified cialis cheap viagra in canada cialis buy drug buy generic cialis viagra buy 25mg viagra cheap viagra without prescription buy cheapest viagra on line purchase viagra cialis 10mg buying generic viagra cialis pills viagra from india cheapest sildenafil citrate cheap cialis no rx viagra india cialis bangkok viagra for order buy sildenafil internet buy generic viagra online buying cialis online where to order cialis tablet cialis find cialis no prescription required viagra cheap drug order cialis cheap online online pharmacy cialis cialis no rx order generic cialis price of cialis viagra soft drug viagra cheap viagra from uk order cialis no prescription order cheap viagra viagra drug order cheap cialis cheap cialis pharmacy best price for viagra cheap viagra from usa cost cialis cialis overnight shipping cheapest generic cialis online generic viagra online online viagra viagra sales cheap cialis in canada compare cialis prices online cialis online drug viagra online purchase discount cialis without prescription no rx viagra cialis overnight viagra uk cialis order cheap cialis from usa buying cialis cialis overnight delivery cialis in bangkok buy and purchase sildenafil online impotence treatment cheap price viagra viagra sale cheap cialis tablet drug cialis generic cialis online cheap viagra pharmacy find discount cialis online viagra malaysia cialis without a prescription buy cialis online cheap viagra rx buy no rx viagra cialis 20mg viagra in malaysia discount viagra online buy sildenafil cheap buy viagra low price buy cialis cialis cheap price cialis cheap generic viagra cialis canada low cost viagra buy cheap viagra cialis vs viagra order cialis from us cialis tablets find no rx cialis buy generic cialis online buy viagra overnight delivery cheapest cialis price buy cheapest cialis on line order cialis in canada viagra tablet viagra no online prescription find cheap cialis online viagra price order viagra no prescription cheap generic cialis buy viagra online cheap cialis uk cialis without rx generic cialis cheap viagra vs cialis order cialis on internet viagra tablets viagra purchase impotence drugs buy cialis generic cialis tablet cialis cheapest price order viagra from canada viagra generic cheap viagra from canada order cialis compare viagra prices online find cheap cialis impotence cure pfizer viagra find discount cialis cheapest cialis buy cialis from india impotence buy cheapest viagra online cialis side effects viagra order discount cialis online cialis in malaysia cialis in uk viagra in uk cialis online without prescription cialis online pharmacy order viagra buy viagra online viagra side effects cialis sale discount cialis no rx cheapest viagra find cialis order cialis no rx buy cialis low price buy viagra cheap drug cialis online purchase order discount viagra online 50 mg viagra 100 mg viagra 10mg cialis cost of cialis cheapest cialis prices buy discount viagra online cialis sales 50mg viagra cialis price buy viagra on internet cialis pill cheapest cialis online purchase viagra overnight delivery cheap cialis from canada cheapest viagra price cialis 20 mg buy sildenafil low cost order viagra without prescription buy viagra lowest price no prescription cialis order viagra on internet discount cialis overnight delivery cialis cheap drug viagra approved viagra no rx required compare viagra prices no rx cialis cheap cialis on internet buy viagra from india buy discount cialis online viagra pharmacy online order viagra from us cialis free delivery cialis for order buy cialis from canada viagra without rx viagra online review 10 mg cialis cheap viagra no rx cheapest viagra prices viagra prices cialis pharmacy order no rx cialis buy cialis in us buy cialis no prescription required order cialis from canada lowest price cialis cheap cialis internet online pharmacy viagra cheapest generic cialis generic drugs cialis india find cialis without prescription best price cialis buy viagra without prescription cheap cialis in uk where to buy viagra 20 mg cialis cheap cialis from uk buy sildenafil canada cialis no rx required cialis in us buy cialis overnight delivery cialis cheap price order cheap viagra online 20mg cialis buy cheap viagra online viagra internet viagra without prescription free cialis buy cialis us cialis buy buy viagra in canada order viagra cheap online find viagra without prescription viagra pills cheap cialis no prescription viagra online without prescription order generic viagra cialis discount viagra cheapest price purchase viagra no rx viagra no rx viagra cheap discount viagra overnight delivery sale cialis cialis pharmacy online purchase cialis without prescription pharmacy online cialis medication discount viagra buy cheap cialis impotence medication viagra medication find cialis on internet impotence pills cialis prices discount viagra without prescription cialis online cheap cialis online review find cheap viagra online buy viagra us purchase cialis online certified viagra where to order viagra buy cheapest viagra buy cialis internet order cialis online buy sildenafil online buy cialis cheap cheap viagra purchase cialis find discount viagra buy cialis on internet cialis buy online buy sildenafil online without a prescription viagra buy online order cheap cialis online viagra information no prescription viagra cost of viagra buy cialis in canada buy cialis online buy viagra cheapest generic viagra cialis us cialis australia fda approved cialis lowest price for viagra viagra bangkok cialis prescription cialis cost buy no rx cialis buy viagra internet viagra discount order viagra overnight delivery generic cialis viagra australia 25 mg viagra order viagra online viagra overnight cialis rx order cialis in us order viagra no rx order discount cialis online viagra vendors order viagra in us buy sildenafil in uk viagra us buy generic viagra viagra canada viagra no prescription viagra cheap price cheap viagra tablet viagra free delivery overnight viagra purchase viagra online find cheap viagra cialis malaysia best price viagra cialis free sample find viagra on internet cialis generic buy sildenafil in canada order cialis no prescription required cheapest viagra online purchase cialis no rx viagra in us order discount cialis cheap viagra internet free viagra cialis approved best price for cialis cialis from india find no rx viagra generic viagra viagra from canada viagra online pharmacy buy viagra from canada cheapest generic viagra online buy cheapest cialis discount cialis viagra overnight delivery cialis without prescription 100mg viagra cialis in australia price of viagra order cialis overnight delivery cheap viagra in uk buying generic cialis viagra pill buy cialis on line low cost cialis find discount viagra online buying viagra cheap cialis overnight delivery pharmacy cialis cheap viagra pill viagra prescription find viagra online buy cialis lowest price discount viagra no rx online cialis viagra free sample cheap viagra in usa find viagra cheap viagra online buy viagra no rx generic viagra cheap buy cialis without prescription buy viagra in us cheap viagra overnight delivery cheap cialis in usa cheap cialis online viagra order no rx viagra viagra soft tab find cialis online lowest price viagra cialis drug cialis vendors viagra online stores erectile dysfunction order viagra in canada buy viagra on line viagra overnight shipping viagra online cheap lowest price for cialis approved viagra pharmacy cialis 10 mg cialis no online prescription cialis purchase cialis from canada order cialis without prescription viagra for sale viagra in australia approved cialis pharmacy buy viagra generic buy sildenafil in spain find viagra no prescription required cialis no prescription buy viagra from us order viagra no prescription required cost viagra purchase viagra without prescription buy cialis no rx cialis cheap cialis internet tablet viagra cheap viagra on internet viagra cost pharmacy viagra cialis soft tab cialis information buy cheap cialis internet purchase cialis overnight delivery cheap cialis without prescription buy viagra no prescription required compare cialis prices buy cheap cialis online overnight cialis where to buy cialis cheap cialis buy cheap viagra internet buy discount cialis viagra buy drug cheap viagra no prescription buy sildenafil citrate buying viagra online buy discount viagra fda approved viagra cialis online stores cheap cialis tablets buy cheapest cialis online cheap viagra tablets order discount viagra sale viagra viagra online cialis for sale cialis soft viagra pharmacy buy cialis from us viagra without a prescription viagra in bangkokFlash is a lightweight cross-platform runtime for rich media, enterprise applications and mobile applications, as well as an integrated development environment. Flash can be programmed in ActionScript 1/2/3.

Wednesday, May 26th, 2004 at 8:15 pm

as2lib: Reflections

The ones that are coming from a Java background probably know what Reflections are. For the others here’s a little explanation:
Reflections offer support to find out information about every kind of member inside a programming environment. Members are for example Classes, Interfaces, Packages, Methods, Properties and so on. As you probably have already imagined the as2lib offers such a Reflection API. It is located in the org.as2lib.env.reflect package. Click the following link to see a little class diagram that shows how all these classes are related to each other: Reflections: Class Diagram.
To obtain a ClassInfo instance representing a specific class you use the org.as2lib.env.util.ReflectUtil’s getClassInfo(Function/Object) operation. The operation for packages is respectively called getPackageInfo(Object). You can now work with this ClassInfo or PackageInfo instance to find out more information like the name of the class, the class’s methods an so on. The above diagram shows all the available operations. [It is that simple to work with that I will not show an example. Just play a little bit around with it.]
Edit: Read on to see the power of the Reflections API.

Create a little package hierachy ‘org.swacker’ and put the following dummy classes into the ’swacker’ package.

  1. import org.swacker.DummySuperClass;
  2.  
  3. class org.swacker.DummyClass extends DummySuperClass {
  4.     public function DummyClass(Void) {
  5.     }
  6.     public function methodOne(Void):Void {
  7.     }
  8.     public function methodTwo(Void):Void {
  9.     }
  10. }
  1. class org.swacker.DummySuperClass {
  2.     public function DummySuperClass(Void) {
  3.     }
  4. }

These two classes are only here for demonstration. They have no real usage. Create a new fla and put the following code into the first frame.

  1. import org.as2lib.env.util.ReflectUtil;
  2. import org.as2lib.env.reflect.ClassInfo;
  3. import org.as2lib.env.reflect.MethodInfo;
  4. import org.as2lib.data.holder.Map;
  5. import org.as2lib.data.iterator.Iterator;
  6. import org.swacker.DummyClass;
  7.  
  8. var dcClassInfo:ClassInfo = ReflectUtil.getClassInfo(DummyClass);
  9.  
  10. trace("Class Name                : " + dcClassInfo.getName());
  11. trace("Class Full Name           : " + dcClassInfo.getFullName());
  12. trace("Super Class Name          : " + dcClassInfo.getSuperType().getName());
  13.  
  14. var methodMapIterator:Iterator = dcClassInfo.getMethods().iterator();
  15. while (methodMapIterator.hasNext()) {
  16.     trace("Method Name               : " + MethodInfo(methodMapIterator.next()).getName() + "()");
  17. }
  18.  
  19. trace("Parent Package Name       : " + dcClassInfo.getParent().getFullName());
  20. trace("Parent Parent Package Name: " + dcClassInfo.getParent().getParent().getFullName());

Compile and run the swf. You should get the following output:

  1. Class Name                : DummyClass
  2. Class Full Name           : org.swacker.DummyClass
  3. Super Class Name          : DummySuperClass
  4. Method Name               : methodTwo()
  5. Method Name               : methodOne()
  6. Parent Package Name       : org.swacker
  7. Parent Parent Package Name: org

As you can see everything worked out fine and we got all the information we wanted.
If you encounter problems check that you have downloaded the as2lib and added it to your classpath. You also have to add the package you currently created.

4 Responses to “as2lib: Reflections”

  1. Leo Vildosola

    I tried to use the reflection functionality and I cannot get it to work. Maybe you can help me. The sample you give works fine but it is not relevant to my case. My use of reflection is not only to be able to extract information about a class, but more to be able to function with that class dynamically.

    My scenario uses Flash components. I create a custom component that has two properties, event and eventHandler, that allow me to group processing of events in a single AS2 class. “event” has the name of an event that the component will raise whenever a particular action is performed by the user. Say we call this event “youPushedMe.” “eventHandler” is the fully qualified path to an AS2 class that will serve as the handler of that event. Say we call this class “org.swacker.EventHandler.”

    Using the EventDispatcher logic we can make EventHandler a listener for the given event. To make EventHandler work we add a method called youPushedMe to handle the event. In order register EventHandler as a listener I need to create an instance of the class dynamically, but from within another AS2 class, not from within a frame, or event triggered by a frame. This scenario does not work with the current reflection functionality, or at least I cannot make it to work. ReflectUtil.getClassInfo(”org.swacker.EventHandler”); throws an exception. Since the property eventHandler from my component is a string, then I don’t think this works. I also tried changing the property’s type to Function and it still does not work. Any ideas?

  2. Leo Vildosola

    BTW, I read some more while researching my problem. If I create a Symbol called org.swacker.EventHandler and associate it to class org.swacker.EventHandler and export it on the first frame, then Flash finds it and my code works fine. I guess this is a Flash problem more than the ReflectUtil problem. Adding something like an import statement in one of my frames won’t cut it. Do you know of a workaround?

  3. Leo Vildosola

    A little update. Since I did not want to force the creation of Symbols to force the Flash movie to refer to specific classes, I figured it would be cleaner to simply add a static method called say preload and call it from a frame in the movie. That way I can keep this type of initialization in one place. This works fine also.

  4. Simon Wacker

    Yeah, that’s a flash problem. The class will be initialized as soon as you use it. That means if you do the following:

    import org.swacker.EventHandler;
    ReflectUtil.getClassInfo(”org.swacker.EventHandler”);

    the class won’t be found and an exception will be thrown because org.swacker.EventHandler is not contained in the _global path.
    Thus what you have to do is just referencing the class. Like this:

    import org.swacker.EventHandler;
    org.swacker.EventHandler;
    ReflectUtil.getClassInfo(”org.swacker.EventHandler”);

    If you now compile and run all should work out fine.