Package de.inetsoftware.classparser
Class TryCatchFinally
- java.lang.Object
-
- de.inetsoftware.classparser.TryCatchFinally
-
public class TryCatchFinally extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private int
end
private int
handler
private int
start
private ConstantClass
type
-
Constructor Summary
Constructors Constructor Description TryCatchFinally(java.io.DataInputStream input, ConstantPool constantPool)
http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.7.3 http://docs.oracle.com/javase/specs/jvms/se5.0/html/ClassFile.doc.html#1546
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getEnd()
int
getHandler()
int
getStart()
ConstantClass
getType()
boolean
isFinally()
(package private) void
setEnd(int end)
(package private) void
setStart(int start)
-
-
-
Field Detail
-
start
private int start
-
end
private int end
-
handler
private final int handler
-
type
private final ConstantClass type
-
-
Constructor Detail
-
TryCatchFinally
TryCatchFinally(java.io.DataInputStream input, @Nonnull ConstantPool constantPool) throws java.io.IOException
http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.7.3 http://docs.oracle.com/javase/specs/jvms/se5.0/html/ClassFile.doc.html#1546- Parameters:
input
-constantPool
-- Throws:
java.io.IOException
-
-
Method Detail
-
getStart
public int getStart()
-
getEnd
public int getEnd()
-
getHandler
public int getHandler()
-
getType
public ConstantClass getType()
-
isFinally
public boolean isFinally()
-
setStart
void setStart(int start)
-
setEnd
void setEnd(int end)
-
-