Copyright (c) 2012, 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) 2012, 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.internal.core.util; import org.eclipse.jdt.core.util.ClassFormatException; import org.eclipse.jdt.core.util.IConstantPool; import org.eclipse.jdt.core.util.ILocalVariableReferenceInfo; public class LocalVariableReferenceInfo extends ClassFileStruct implements ILocalVariableReferenceInfo { private int startPC; private int length; private int index;
Constructor for LocalVariableTableEntry.
Params:
  • classFileBytes –
  • constantPool –
  • offset –
Throws:
/** * Constructor for LocalVariableTableEntry. * * @param classFileBytes * @param constantPool * @param offset * @throws ClassFormatException */
public LocalVariableReferenceInfo( byte[] classFileBytes, IConstantPool constantPool, int offset) throws ClassFormatException { this.startPC = u2At(classFileBytes, 0, offset); this.length = u2At(classFileBytes, 2, offset); this.index = u2At(classFileBytes, 4, offset); }
See Also:
  • getStartPC.getStartPC()
/** * @see ILocalVariableReferenceInfo#getStartPC() */
@Override public int getStartPC() { return this.startPC; }
See Also:
  • getLength.getLength()
/** * @see ILocalVariableReferenceInfo#getLength() */
@Override public int getLength() { return this.length; }
See Also:
  • getIndex.getIndex()
/** * @see ILocalVariableReferenceInfo#getIndex() */
@Override public int getIndex() { return this.index; } }