-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.debuggerDefaults
36 lines (34 loc) · 1.93 KB
/
.debuggerDefaults
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# ODB Defaults 28.Mar.07 -- You may edit by hand. See Manual for details
# Class & method names must be complete. '*' must be freestanding.
# DidntInstrument: This is informative only. (You may change to InstrumentOnly.)
# DontInstrumentMethod: These methods won't be instrumented (but may be recorded).
# DontRecordMethod: These methods won't be recorded (ie, from the calling method).
# DontEither: These methods won't be recorded or instrumented.
# MaxTimeStamps: This is overridded by the command line argument, hence seldom used.
# StartPattern: Recording will start when this pattern is matched.
# StopPattern: Recording will stop when this pattern is matched (no restarts!).
# SourceDirectory: If sources can't be found normally, look here.
# OnlyInstrument: Only classes which match this prefix will be instrumented.
# OnlyInstrument: "" means default package only. No entry means everything.
# UserSelectedField: This instance variable (a final String) will be appended to the display string
# UserSelectedField: "com.lambda.Thing name" -> <Thing_23 John>
# SpecialFormatter: com.lambda.Debugger.SpecialTimeStampFormatter
MaxTimeStamps: 400000
StartPattern:
StopPattern:
SourceDirectory: "/home/hephaestus/git/java-bowler/examples/java/src/"
SourceDirectory: "/home/hephaestus/git/java-bowler/src/main/java/"
SourceDirectory: "/home/hephaestus/git/nrjavaserial/src/main/java/"
SourceDirectory: "/home/hephaestus/git/java-bowler/test/java/src/"
OnlyInstrument:
DidntInstrument:
DontInstrumentMethod:
DontInstrumentMethod: "* toString"
DontInstrumentMethod: "* valueOf"
DontRecordMethod:
DontRecordMethod: "* toString"
DontRecordMethod: "* valueOf"
DontRecordMethod: "java.lang.StringBuilder *"
DontRecordMethod: "java.lang.StringBuffer *"
DontRecordMethod: "java.lang.Object new"
UserSelectedField: "com.lambda.Debugger.DemoThing name"