Package tv.porst.swfretools.parser.structures

Examples of tv.porst.swfretools.parser.structures.GenericVector


    }
    else if (getUserObject() instanceof RTQNameLA) {
      // Nothing to do
    }
    else if (getUserObject() instanceof GenericVector) {
      final GenericVector cname = (GenericVector) getUserObject();
      addNode("type_definition", cname.getTypeDefinition());
      addNode("param_count", cname.getParamCount());
      addNode("params", cname.getParams());
    }
    else {
      throw new IllegalStateException("Error: Unknown multiname");
    }
  }
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.parser.structures.GenericVector

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.