Package tv.porst.swfretools.parser.structures

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


*/
public final class AS3GetdescendantsParser {

  public static AS3Getdescendants parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Getdescendants(opcode, index);
  }
View Full Code Here


public final class AS3CoerceParser {

  public static AS3Coerce parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {

    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Coerce(opcode, index);
  }
View Full Code Here

TOP

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

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.