private void layoutWhatsNext() {
BorderLayoutBuilder whatsNextLayout = new BorderLayoutBuilder(0, 10);
JLabel caption = getCaption("Automapper", ClientIcons.AUTO_MAPPER_32);
whatsNextLayout.north(caption);
OneColumnPanel col = new OneColumnPanel();
col.setWeightX(1.0);
col.setInsets(0, 0, 3, 0);
String mappingsMessage = "<html>" +
"When you finish this wizard you will be asked to map the data from your source "
+ "to your target.<br>" + "To save time, " + JitterbitConnectNames.JITTERBIT_CONNECT
+ " can automatically create mappings between similar field names.<br>"
+ "You can edit these mappings.</html>";
col.add(mappingsMessage);
autoMapChoice.setBorder(Empty.border(10, 20, 0, 0));
col.add(autoMapChoice);
col.setBorder(sectionBorder);
whatsNextLayout.center(col);
add(whatsNextLayout, 0.0);
}