Copyright (c) 2000, 2009 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
/******************************************************************************* * Copyright (c) 2000, 2009 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 *******************************************************************************/
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.IConstantPoolConstant; import org.eclipse.jdt.core.util.IConstantPoolEntry; import org.eclipse.jdt.core.util.ILocalVariableTypeTableEntry;
Default implementation of ILocalVariableTypeTableEntry
/** * Default implementation of ILocalVariableTypeTableEntry */
public class LocalVariableTypeTableEntry extends ClassFileStruct implements ILocalVariableTypeTableEntry { private int startPC; private int length; private int nameIndex; private int signatureIndex; private char[] name; private char[] signature; private int index;
Constructor for LocalVariableTypeTableEntry.
Params:
  • classFileBytes –
  • constantPool –
  • offset –
Throws:
/** * Constructor for LocalVariableTypeTableEntry. * * @param classFileBytes * @param constantPool * @param offset * @throws ClassFormatException */
public LocalVariableTypeTableEntry( byte[] classFileBytes, IConstantPool constantPool, int offset) throws ClassFormatException { this.startPC = u2At(classFileBytes, 0, offset); this.length = u2At(classFileBytes, 2, offset); this.nameIndex = u2At(classFileBytes, 4, offset); this.signatureIndex = u2At(classFileBytes, 6, offset); this.index = u2At(classFileBytes, 8, offset); IConstantPoolEntry constantPoolEntry = constantPool.decodeEntry(this.nameIndex); if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) { throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY); } this.name = constantPoolEntry.getUtf8Value(); constantPoolEntry = constantPool.decodeEntry(this.signatureIndex); if (constantPoolEntry.getKind() != IConstantPoolConstant.CONSTANT_Utf8) { throw new ClassFormatException(ClassFormatException.INVALID_CONSTANT_POOL_ENTRY); } this.signature = constantPoolEntry.getUtf8Value(); }
See Also:
  • getStartPC.getStartPC()
/** * @see ILocalVariableTypeTableEntry#getStartPC() */
@Override public int getStartPC() { return this.startPC; }
See Also:
  • getLength.getLength()
/** * @see ILocalVariableTypeTableEntry#getLength() */
@Override public int getLength() { return this.length; }
See Also:
  • getNameIndex.getNameIndex()
/** * @see ILocalVariableTypeTableEntry#getNameIndex() */
@Override public int getNameIndex() { return this.nameIndex; }
See Also:
  • getSignatureIndex.getSignatureIndex()
/** * @see ILocalVariableTypeTableEntry#getSignatureIndex() */
@Override public int getSignatureIndex() { return this.signatureIndex; }
See Also:
  • getIndex.getIndex()
/** * @see ILocalVariableTypeTableEntry#getIndex() */
@Override public int getIndex() { return this.index; }
See Also:
  • getName.getName()
/** * @see ILocalVariableTypeTableEntry#getName() */
@Override public char[] getName() { return this.name; }
See Also:
  • getSignature.getSignature()
/** * @see ILocalVariableTypeTableEntry#getSignature() */
@Override public char[] getSignature() { return this.signature; } }