Package tv.porst.swfretools.parser.structures

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


      final QName qname = (QName) multinameInfo.getData();

      final int ns = qname.getNs().value();
      final int nameIndex = qname.getName().value();

      final NamespaceInfo namespace = resolveNamespace(ns, namespaceList);

      if (namespace == null) {
        return new String[0];
      }

      final int namespaceNameIndex = namespace.getName().value();
      final String namespaceName = resolveString(namespaceNameIndex, constantPool);

      final String name = resolveString(nameIndex, constantPool);

      return new String[] { namespaceName, name };
View Full Code Here

TOP

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

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.