Uses of Class
org.jboss.byteman.agent.Location
-
Packages that use Location Package Description org.jboss.byteman.agent org.jboss.byteman.rule -
-
Uses of Location in org.jboss.byteman.agent
Subclasses of Location in org.jboss.byteman.agent Modifier and Type Class Description private static class
Location.AccessLocation
location identifying a generic access trigger pointprivate static class
Location.EntryLocation
location identifying a method entry trigger pointprivate static class
Location.ExceptionExitLocation
location identifying a method exceptional exit trigger pointprivate static class
Location.ExitLocation
location identifying a method exit trigger pointprivate static class
Location.FieldAccessLocation
location identifying a field access trigger pointprivate static class
Location.InvokeLocation
location identifying a method invocation trigger pointprivate static class
Location.LineLocation
location identifying a method line trigger pointprivate static class
Location.NewLocation
private static class
Location.SynchronizeLocation
location identifying a synchronization trigger pointprivate static class
Location.ThrowLocation
location identifying a throw trigger pointprivate static class
Location.VariableAccessLocation
location identifying a variable access trigger pointFields in org.jboss.byteman.agent declared as Location Modifier and Type Field Description private Location
RuleScript. targetLocation
identifies the location in the method if the trigger point at which the rule code should be injected.Methods in org.jboss.byteman.agent that return Location Modifier and Type Method Description protected static Location
Location.AccessLocation. create(java.lang.String parameters, int flags, boolean whenComplete)
create a location identifying a method entry trigger pointstatic Location
Location. create(LocationType type, java.lang.String parameters)
create a location object of a given typeprotected static Location
Location.EntryLocation. create(java.lang.String parameters)
create a location identifying a method entry trigger pointprotected static Location
Location.ExceptionExitLocation. create(java.lang.String parameters)
create a location identifying a method exceptional exit trigger pointprotected static Location
Location.ExitLocation. create(java.lang.String parameters)
create a location identifying a method entry trigger pointprotected static Location
Location.InvokeLocation. create(java.lang.String parameters, boolean whenComplete)
create a location identifying a method entry trigger pointprotected static Location
Location.LineLocation. create(java.lang.String parameters)
create a location identifying a method entry trigger pointprotected static Location
Location.NewLocation. create(java.lang.String parameters, boolean whenComplete)
create a location identifying a method exceptional exit trigger pointprotected static Location
Location.SynchronizeLocation. create(java.lang.String parameters, boolean whenComplete)
create a location identifying a synchronization trigger pointprotected static Location
Location.ThrowLocation. create(java.lang.String parameters)
create a location identifying a throw trigger pointLocation
RuleScript. getTargetLocation()
Constructors in org.jboss.byteman.agent with parameters of type Location Constructor Description RuleScript(java.lang.String name, java.lang.String targetClass, boolean isInterface, boolean isOverride, java.lang.String targetMethod, java.lang.String targetHelper, java.lang.String[] imports, Location targetLocation, java.lang.String ruleText, int line, java.lang.String file, boolean compileToBytecode)
standard constructor for a rule -
Uses of Location in org.jboss.byteman.rule
Methods in org.jboss.byteman.rule that return Location Modifier and Type Method Description Location
Rule. getTargetLocation()
-