* Create attributes table model
* @return The table model for the attributes table.
*/
private AttributesTableModel createAttributesTable()
{
AttributesTableModel table = new AttributesTableModel();
table.addTableModelListener(this);
/** Attempt to set the objectname **/
if ( !table.setObjectName(_mbeanName) )
{
JOptionPane.showMessageDialog(this,"Unable to view the attributes to this MBean");
table = null;
}