}
detailPanel.removeAllOptionalPanels();
// Step I: Highlight the selected element in the hex view
final FlashHexView hexView = detailPanel.getHexView();
hexView.setFile(FlashTreeHelpers.getLoadedFile(node));
hexView.getHexView().setCurrentOffset(node.getUserObject().getBitPosition() / 8);
hexView.getHexView().setSelectionLength(2 * ((node.getUserObject().getBitLength() + 7) / 8));
// Step II: Display additional panels where necessary.
final IExtraPanel extraPanel = node.getExtraPanel();
if (extraPanel != null) {