gbc.insets.bottom = 0;
gbl.setConstraints(_description, gbc);
this.add(_description);
/** Add View attributes and methods text button **/
TextButton viewButton = new TextButton(VIEW_BUTTON_TEXT, DetailPanel.NORMAL_COLOR, DetailPanel.OVER_COLOR, DetailPanel.DOWN_COLOR);
_hideableComponents.add(viewButton);
viewButton.setVisible(false);
label.setFont(label.getFont().deriveFont(Font.PLAIN));
gbc.gridx = 0;
gbc.gridy = 7;
gbc.fill = GridBagConstraints.NONE;
gbc.gridwidth = 1;
gbc.insets.top = 0;
gbc.insets.left = 10;
gbc.insets.right = 10;
gbc.insets.bottom = 10;
gbl.setConstraints(viewButton, gbc);
this.add(viewButton);
viewButton.addActionListener(this);
}