Package tv.porst.splib.binaryparser

Examples of tv.porst.splib.binaryparser.INT24


*/
public final class AS3IfnltParser {

  public static AS3Ifnlt parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final INT24 offset = parseINT24(parser, 0x00006, fieldName + "::offset");

    return new AS3Ifnlt(opcode, offset);
  }
View Full Code Here


*/
public final class AS3IfneParser {

  public static AS3Ifne parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final INT24 offset = parseINT24(parser, 0x00006, fieldName + "::offset");

    return new AS3Ifne(opcode, offset);
  }
View Full Code Here

*/
public final class AS3JumpParser {

  public static AS3Jump parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final INT24 offset = parseINT24(parser, 0x00006, fieldName + "::offset");

    return new AS3Jump(opcode, offset);
  }
View Full Code Here

*/
public final class AS3IfeqParser {

  public static AS3Ifeq parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final INT24 offset = parseINT24(parser, 0x00006, fieldName + "::offset");

    return new AS3Ifeq(opcode, offset);
  }
View Full Code Here

*/
public final class AS3IfstrictneParser {

  public static AS3Ifstrictne parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final INT24 offset = parseINT24(parser, 0x00006, fieldName + "::offset");

    return new AS3Ifstrictne(opcode, offset);
  }
View Full Code Here

*/
public final class AS3IfgtParser {

  public static AS3Ifgt parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final INT24 offset = parseINT24(parser, 0x00006, fieldName + "::offset");

    return new AS3Ifgt(opcode, offset);
  }
View Full Code Here

TOP

Related Classes of tv.porst.splib.binaryparser.INT24

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.