}
// combine the two required sizes
final Size combinedSize = new Size(leftPanelRequiredSize);
combinedSize.extendWidth(rightPanelRequiredSize.getWidth());
combinedSize.ensureHeight(rightPanelRequiredSize.getHeight());
return combinedSize;
}
protected void showInRightPane(final View view) {
replaceView(getSubviews()[1], view);