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 classLocation.AccessLocationlocation identifying a generic access trigger pointprivate static classLocation.EntryLocationlocation identifying a method entry trigger pointprivate static classLocation.ExceptionExitLocationlocation identifying a method exceptional exit trigger pointprivate static classLocation.ExitLocationlocation identifying a method exit trigger pointprivate static classLocation.FieldAccessLocationlocation identifying a field access trigger pointprivate static classLocation.InvokeLocationlocation identifying a method invocation trigger pointprivate static classLocation.LineLocationlocation identifying a method line trigger pointprivate static classLocation.NewLocationprivate static classLocation.SynchronizeLocationlocation identifying a synchronization trigger pointprivate static classLocation.ThrowLocationlocation identifying a throw trigger pointprivate static classLocation.VariableAccessLocationlocation identifying a variable access trigger pointFields in org.jboss.byteman.agent declared as Location Modifier and Type Field Description private LocationRuleScript. targetLocationidentifies 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 LocationLocation.AccessLocation. create(java.lang.String parameters, int flags, boolean whenComplete)create a location identifying a method entry trigger pointstatic LocationLocation. create(LocationType type, java.lang.String parameters)create a location object of a given typeprotected static LocationLocation.EntryLocation. create(java.lang.String parameters)create a location identifying a method entry trigger pointprotected static LocationLocation.ExceptionExitLocation. create(java.lang.String parameters)create a location identifying a method exceptional exit trigger pointprotected static LocationLocation.ExitLocation. create(java.lang.String parameters)create a location identifying a method entry trigger pointprotected static LocationLocation.InvokeLocation. create(java.lang.String parameters, boolean whenComplete)create a location identifying a method entry trigger pointprotected static LocationLocation.LineLocation. create(java.lang.String parameters)create a location identifying a method entry trigger pointprotected static LocationLocation.NewLocation. create(java.lang.String parameters, boolean whenComplete)create a location identifying a method exceptional exit trigger pointprotected static LocationLocation.SynchronizeLocation. create(java.lang.String parameters, boolean whenComplete)create a location identifying a synchronization trigger pointprotected static LocationLocation.ThrowLocation. create(java.lang.String parameters)create a location identifying a throw trigger pointLocationRuleScript. 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 LocationRule. getTargetLocation()
-