@Override
public void handleEvent(final Event event) {
final String path = (String)event.getProperty(SlingConstants.PROPERTY_PATH);
if ( path != null ) {
final JspRuntimeContext rctxt = this.jspRuntimeContext;
if ( rctxt != null && rctxt.handleModification(path) ) {
renewJspRuntimeContext();
}
}
}