Copyright (c) 2013 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation Andy Clement - Contributions for Bug 383624 - [1.8][compiler] Revive code generation support for type annotations (from Olivier's work)
/******************************************************************************* * Copyright (c) 2013 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation * Andy Clement - Contributions for * Bug 383624 - [1.8][compiler] Revive code generation support for type annotations (from Olivier's work) *******************************************************************************/
package org.eclipse.jdt.core.util;
Description of a local variable reference info table entry as specified in the JVM specifications. This interface may be implemented by clients.
Since:3.10
/** * Description of a local variable reference info table entry as specified in the JVM specifications. * * This interface may be implemented by clients. * * @since 3.10 */
public interface ILocalVariableReferenceInfo {
Answer back the start pc of this entry as specified in the JVM specifications.
Returns:the start pc of this entry as specified in the JVM specifications
/** * Answer back the start pc of this entry as specified in * the JVM specifications. * * @return the start pc of this entry as specified in * the JVM specifications */
int getStartPC();
Answer back the length of this entry as specified in the JVM specifications.
Returns:the length of this entry as specified in the JVM specifications
/** * Answer back the length of this entry as specified in * the JVM specifications. * * @return the length of this entry as specified in * the JVM specifications */
int getLength();
Answer back the resolved position of the local variable as specified in the JVM specifications.
Returns:the resolved position of the local variable as specified in the JVM specifications
/** * Answer back the resolved position of the local variable as specified in * the JVM specifications. * * @return the resolved position of the local variable as specified in * the JVM specifications */
int getIndex(); }