Interface ITracepoint
-
public interface ITracepointThis type describes a tracepoint that has been attached via code, usingIDeep.registerTracepoint(String, int).
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceITracepoint.ITracepointRegistrationDefines the tracepoint registration.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>args()Get the args for the tracepoint.Stringid()The generated ID for the tracepoint.intline()Get the tracepoint line number.Stringpath()Get the tracepoint path.Collection<String>watches()Get the tracepoint watches.
-
-
-
Method Detail
-
path
String path()
Get the tracepoint path.- Returns:
- the tracepoint path
-
line
int line()
Get the tracepoint line number.- Returns:
- the line number
-
args
Map<String,String> args()
Get the args for the tracepoint.- Returns:
- the args on the tracepoint
-
watches
Collection<String> watches()
Get the tracepoint watches.- Returns:
- the configured watches
-
id
String id()
The generated ID for the tracepoint.- Returns:
- the tracepoint id
-
-