Package org.aspectj.org.eclipse.jdt.internal.core.util

Source Code of org.aspectj.org.eclipse.jdt.internal.core.util.ExceptionAttribute

/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.aspectj.org.eclipse.jdt.internal.core.util;

import org.aspectj.org.eclipse.jdt.core.compiler.CharOperation;
import org.aspectj.org.eclipse.jdt.core.util.ClassFormatException;
import org.aspectj.org.eclipse.jdt.core.util.IConstantPool;
import org.aspectj.org.eclipse.jdt.core.util.IConstantPoolConstant;
import org.aspectj.org.eclipse.jdt.core.util.IConstantPoolEntry;
import org.aspectj.org.eclipse.jdt.core.util.IExceptionAttribute;

/**
* Default implementation of IExceptionAttribute.
*/
public class ExceptionAttribute extends ClassFileAttribute implements IExceptionAttribute
  private int exceptionsNumber;
  private char[][] exceptionNames;
  private int[] exceptionIndexes;
 
  ExceptionAttribute(byte[] classFileBytes, IConstantPool constantPool, int offset) throws ClassFormatException {
    super(classFileBytes, constantPool, offset);
    this.exceptionsNumber = u2At(classFileBytes, 6, offset);
    int exceptionLength = this.exceptionsNumber;
    this.exceptionNames = CharOperation.NO_CHAR_CHAR;
    this.exceptionIndexes = org.aspectj.org.eclipse.jdt.internal.compiler.util.Util.EMPTY_INT_ARRAY;
    if (exceptionLength != 0) {
      this.exceptionNames = new char[exceptionLength][];
      this.exceptionIndexes = new int[exceptionLength];
    }
    int readOffset = 8;
    IConstantPoolEntry constantPoolEntry;
    for (int i = 0; i < exceptionLength; i++) {
      exceptionIndexes[i] = u2At(classFileBytes, readOffset, offset);
      constantPoolEntry = constantPool.decodeEntry(exceptionIndexes[i]);
      if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Class) {
        throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY);
      }
      exceptionNames[i] = constantPoolEntry.getClassInfoName();
      readOffset += 2;
    }
  }
 
  /**
   * @see IExceptionAttribute#getExceptionIndexes()
   */
  public int[] getExceptionIndexes() {
    return this.exceptionIndexes;
  }

  /**
   * @see IExceptionAttribute#getExceptionNames()
   */
  public char[][] getExceptionNames() {
    return this.exceptionNames;
  }

  /**
   * @see IExceptionAttribute#getExceptionsNumber()
   */
  public int getExceptionsNumber() {
    return this.exceptionsNumber;
  }
}
TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.util.ExceptionAttribute

TOP
Copyright © 2018 www.massapi.com. 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.