}
private static Widget simpleInline(
String title, String inlineText, String style, int depth, boolean hasSeparator) {
Widget valueLabel = new InlineLabel(inlineText);
valueLabel.addStyleName(style);
return inlineWidget(title, Lists.newArrayList(valueLabel), depth, hasSeparator);
}
private static Widget inlineWidget(
String title, List<Widget> inlineWidgets, int depth, boolean hasSeparator) {