Class LineNumberAttribute
java.lang.Object
org.aspectj.org.eclipse.jdt.internal.core.util.ClassFileStruct
org.aspectj.org.eclipse.jdt.internal.core.util.ClassFileAttribute
org.aspectj.org.eclipse.jdt.internal.core.util.LineNumberAttribute
- All Implemented Interfaces:
IClassFileAttribute,ILineNumberAttribute
Default implementation of ILineNumberAttribute.
-
Field Summary
Fields inherited from class org.aspectj.org.eclipse.jdt.internal.core.util.ClassFileAttribute
NO_ATTRIBUTES -
Constructor Summary
ConstructorsConstructorDescriptionLineNumberAttribute(byte[] classFileBytes, IConstantPool constantPool, int offset) Constructor for LineNumberAttribute. -
Method Summary
Modifier and TypeMethodDescriptionint[][]Answer back the array of pairs (start pc, line number) as specified in the JVM specifications.intAnswer back the line number table length as specified in the JVM specifications.Methods inherited from class org.aspectj.org.eclipse.jdt.internal.core.util.ClassFileAttribute
getAttributeLength, getAttributeName, getAttributeNameIndexMethods inherited from class org.aspectj.org.eclipse.jdt.internal.core.util.ClassFileStruct
doubleAt, floatAt, i1At, i2At, i4At, i8At, u1At, u2At, u4At, utf8AtMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.aspectj.org.eclipse.jdt.core.util.IClassFileAttribute
getAttributeLength, getAttributeName, getAttributeNameIndex
-
Constructor Details
-
LineNumberAttribute
public LineNumberAttribute(byte[] classFileBytes, IConstantPool constantPool, int offset) throws ClassFormatException Constructor for LineNumberAttribute.- Throws:
ClassFormatException
-
-
Method Details
-
getLineNumberTable
public int[][] getLineNumberTable()Description copied from interface:ILineNumberAttributeAnswer back the array of pairs (start pc, line number) as specified in the JVM specifications. Answer an empty array if none.- Specified by:
getLineNumberTablein interfaceILineNumberAttribute- Returns:
- the array of pairs (start pc, line number) as specified in the JVM specifications. Answer an empty array if none
- See Also:
-
getLineNumberTableLength
public int getLineNumberTableLength()Description copied from interface:ILineNumberAttributeAnswer back the line number table length as specified in the JVM specifications.- Specified by:
getLineNumberTableLengthin interfaceILineNumberAttribute- Returns:
- the line number table length as specified in the JVM specifications
- See Also:
-