Package javassist.bytecode.analysis
Class Subroutine
- java.lang.Object
-
- javassist.bytecode.analysis.Subroutine
-
public class Subroutine extends Object
Represents a nested method subroutine (marked by JSR and RET).- Author:
- Jason T. Greene
-
-
Constructor Summary
Constructors Constructor Description Subroutine(int start, int caller)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
access(int index)
Collection<Integer>
accessed()
void
addCaller(int caller)
Collection<Integer>
callers()
boolean
isAccessed(int index)
int
start()
String
toString()
-
-
-
Method Detail
-
addCaller
public void addCaller(int caller)
-
start
public int start()
-
access
public void access(int index)
-
isAccessed
public boolean isAccessed(int index)
-
accessed
public Collection<Integer> accessed()
-
callers
public Collection<Integer> callers()
-
-