- java.lang.Object
-
- com.ibm.dtfj.corereaders.zos.le.Function
-
public class Function extends Object
This class represents an LE managed function.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getEntryPoint()
Returns the address of the entry point.String
getName()
Returns the name of the function.String
getProgramUnit()
Returns the name of the program unit.
-
-
-
Method Detail
-
getName
public String getName()
Returns the name of the function. This does not include the library name.
-
getProgramUnit
public String getProgramUnit()
Returns the name of the program unit. This represents for instance the name of the C file in which this function resides.
-
getEntryPoint
public long getEntryPoint()
Returns the address of the entry point. The entry point of a function is where the executable code begins.
-
-