How can I fake SystemManager?

I need to tell Flex compiler that my custom class is SystemManager and it has to create on it info() and create(…rest) functions.
Why do I need this:

  • lots of additional compiler arguments are set at compile time to the object returned by SystemManager#info() function. But this function isn’t written into other document classes besides SystemManager. Even if I call my custom class mx.managers.SystemManager it won’t get that function overridden… I believe this should be buried somewhere in Java / Ant files, i.e. at some point compiler has to decide whether to write this function or not, and there’s something that should trigger it to actually do it, but I don’t know what it is…
    Any insights, please? :slight_smile: