5960616263646566
Callback callbackAnnotation = method.getAnnotation( Callback.class ); return callbackAnnotation != null; } private boolean needsPoll() { Poll pollAnnotation = method.getAnnotation( Poll.class ); return pollAnnotation != null; }
9596979899100101102
37383940414243444546
Object target ) { this.statement = statement; this.base = base; this.target = target; Poll pollAnnotation = method.getAnnotation( Poll.class ); interval = pollAnnotation.interval(); times = pollAnnotation.times(); pollState = new PollStateImpl(); }
Object target ) { this.statement = statement; this.base = base; this.target = target; Poll pollAnnotation = description.getAnnotation( Poll.class ); interval = pollAnnotation.interval(); times = pollAnnotation.times(); pollState = new PollStateImpl(); }
949596979899100101
Callback callbackAnnotation = description.getAnnotation( Callback.class ); return callbackAnnotation != null; } private boolean needsPoll() { Poll pollAnnotation = description.getAnnotation( Poll.class ); return pollAnnotation != null; }