public void execute() throws BaseException
{
try
{
AlterTableDialog dlog = new AlterTableDialog(_session, _plugin, _ti);
dlog.pack();
GUIUtils.centerWithinParent(dlog);
dlog.setVisible(true);
}
catch (SQLException ex)
{
throw new WrappedSQLException(ex);
}