Interface ITracepoint
-
public interface ITracepoint
This 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 interface
ITracepoint.ITracepointRegistration
Defines 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.String
id()
The generated ID for the tracepoint.int
line()
Get the tracepoint line number.String
path()
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
-
-