DissectingPaneAttributes attributes =
(DissectingPaneAttributes) papiAttributes;
// Get the current form fragment from the request context
DissectingPane dissectingPane =
context.getDissectingPane(attributes.getName());
if (dissectingPane != null) {
String value = attributes.getLinkText();
if (value != null) {
dissectingPane.overrideLinkToText(value);
}
value = attributes.getBackLinkText();
if (value != null) {
dissectingPane.overrideLinkFromText(value);
}
}
return CONTINUE_PROCESSING;
}