Handler.java :  » Game » skbot-client » org » rsbot » loader » asm » Java Open Source

Java Open Source » Game » skbot client 
skbot client » org » rsbot » loader » asm » Handler.java
/***
 * ASM: a very small and fast Java bytecode manipulation framework
 * Copyright (c) 2000-2007 INRIA, France Telecom
 * All rights reserved.
 */
package org.rsbot.loader.asm;

/**
 * Information about an exception handler block.
 *
 * @author Eric Bruneton
 */
class Handler {

  /**
   * Beginning of the exception handler's scope (inclusive).
   */
  Label start;

  /**
   * End of the exception handler's scope (exclusive).
   */
  Label end;

  /**
   * Beginning of the exception handler's code.
   */
  Label handler;

  /**
   * Internal name of the type of exceptions handled by this handler, or
   * <tt>null</tt> to catch any exceptions.
   */
  String desc;

  /**
   * Constant pool index of the internal name of the type of exceptions
   * handled by this handler, or 0 to catch any exceptions.
   */
  int type;

  /**
   * Next exception handler block info.
   */
  Handler next;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.