Package tv.porst.swfretools.utils.as3

Examples of tv.porst.swfretools.utils.as3.ActionScript3Resolver


   * @return The extra panel that belongs to the node.
   */
  public IExtraPanel getExtraPanel() {
    if (panel == null) {
      if (getUserObject() instanceof DoABCTag) {
        final ResolvedCode code = ActionScript3Resolver.resolve(((DoABCTag) getUserObject()).getAbcData());
        panel = new AS3CodePanel(code);
      }
      else if (getUserObject() instanceof RawABCTag) {
        final ResolvedCode code = ActionScript3Resolver.resolve(((RawABCTag) getUserObject()).getAbcData());
        panel = new AS3CodePanel(code);
      }
      else if (getUserObject() instanceof DoActionTag) {
        panel = new AS2CodePanel(((DoActionTag) getUserObject()).getActions());
      }
View Full Code Here


      boolean hadCode = false;

      // Start preparing all the methods for printing. Add the instance
      // constructor and the class constructor for printing.
      final ResolvedMethod staticConstructor = resolvedClass.getStaticConstructor();
      final ResolvedMethod constructor = resolvedClass.getConstructor();

      final List<ResolvedMethod> resolvedMethods = resolvedClass.getMethods();

      resolvedMethods.add(0, constructor);
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.utils.as3.ActionScript3Resolver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.