Fork Of

gist: 142053 by rhyolight Config for a groovy script ...

Revisions

gist: 142636 Download_button fork
public
Public Clone URL: git://gist.github.com/142636.git
Embed All Files: show embed
Java #
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
btrace {
templates {
// all methods within mydomain classes
methodTimerTemplate {
template = 'btrace-templates\\ManyMethodTimerTemplate.template'
targetClasses {
'/com\\\\.mydomain\\\\..+/' {
targetMethods = [ '/.+/' ]
}
}
}
// all mydomain getters and setters
accessorMethodTimerTemplate {
template = 'btrace-templates\\ManyMethodTimerTemplate.template'
targetClasses {
'/com\\\\.mydomain\\\\..+/' {
targetMethods = [
'/get.*/',
'/set.*/'
]
}
}
}
}
}