/******************************************************************************* * Copyright (c) 2007 IBM Corporation. * 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 com.ibm.wala.classLoader; import java.util.Collection; import com.ibm.wala.shrikeBT.ExceptionHandler; import com.ibm.wala.shrikeBT.IInstruction; import com.ibm.wala.shrikeBT.IndirectionData; import com.ibm.wala.shrikeCT.InvalidClassFileException; import com.ibm.wala.types.annotations.Annotation; /** * A method which originated in bytecode, decoded by Shrike */ public interface IBytecodeMethod extends IMethod { /** * @return the bytecode index corresponding to instruction i in the getInstructions() array */ int getBytecodeIndex(int i) throws InvalidClassFileException; /** * @return the Shrike representation of the exception handlers */ ExceptionHandler[][] getHandlers() throws InvalidClassFileException; /** * @return the Shrike instructions decoded from the bytecode */ IInstruction[] getInstructions() throws InvalidClassFileException; /** * @return the call sites declared in the bytecode for this method */ Collection<CallSiteReference> getCallSites() throws InvalidClassFileException; /** * @return information about any indirect uses of local variables */ IndirectionData getIndirectionData(); Collection<Annotation>[] getParameterAnnotations(); Collection<Annotation> getAnnotations(boolean runtimeVisible) throws InvalidClassFileException; }