Package tv.porst.swfretools.parser.structures

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


   *
   * @throws SWFParserException Thrown if parsing the tag failed.
   */
  public static RawABCTag parse(final RecordHeader header, final SWFBinaryParser parser) throws SWFParserException {

    final AS3Data abcData = AS3DataParser.parse(parser, "DoABC::ABCData");

    return new RawABCTag(header, abcData);
  }
View Full Code Here


  public static DoABCTag parse(final RecordHeader header, final SWFBinaryParser parser) throws SWFParserException {

    final UINT32 flags = parseUINT32(parser, 0x00006, "DoABC::Flags");
    final AsciiString name = parseString(parser, 0x00006, "DoABC::Name");

    final AS3Data abcData = AS3DataParser.parse(parser, "DoABC::ABCData");

    return new DoABCTag(header, flags, name, abcData);
  }
View Full Code Here

TOP

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

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.