Arrays.fill(cc, 0);
Arrays.fill(crun, 0);
ClassAgent aca = getNewClassAgent();
aca.addInterceptor(MethodMatcherFactory.matcher("run"), new MethodCounter(crun));
aca.addInterceptor(MethodMatcherFactory.matcher(".*"), new MethodCounter(cc));
aca.addInterceptor(MethodMatcherFactory.matcher("doSomething"), new RhinocerosListener());
Class<? extends Rhinoceros> c = aca.define(Nutzs.cd(), Rhinoceros.class);// RA.class;
Rhinoceros r = Mirror.me(c).born();
r.doSomething(BEH.run);
r.doSomething(BEH.fight);
try {