* Gets the joinpoint status update containing all the observed interceptor
* chain changes information.
* @return the joinpoint status update.
*/
private JoinpointStatusUpdate getJoinpointStatusUpdate() {
JoinpointStatusUpdate update = new JoinpointStatusUpdate();
update.clazz = this.clazz;
update.newlyAdvisedJoinpoints = this.newlyAdvised;
update.newlyUnadvisedJoinpoints = this.newlyUnadvised;
this.newlyAdvised = new JoinpointStatusUpdate.ClassJoinpoints(this.fields, this.constructors, this.methods);
this.newlyUnadvised = new JoinpointStatusUpdate.ClassJoinpoints(this.fields, this.constructors, this.methods);