public AbstractDetailPane getAttributeDetailPane(Class<? extends AttributeInfo> attributeInfoClass) {
return getDetailPane(getPaneName(attributeInfoClass));
}
private AbstractDetailPane getDetailPane(String attributeType) {
AbstractDetailPane detailPane = attributeTypeToDetailPane.get(attributeType);
if (detailPane == null) {
detailPane = createDetailPanel(attributeType);
if (detailPane != null) {
if (detailPane instanceof FixedListDetailPane) {
specificInfoPane.add(((FixedListDetailPane)detailPane).getScrollPane(), attributeType);