392393394395396397398399400401402
} catch (Exception ex) { LOG.error(Messages.getString("TableDataModel.41"),ex); //$NON-NLS-1$ } } // create a new TableLinkElement value = new TableLinkElement(linkurl,title,icon); } else value = null; } }
668669670671672673674675676677
Object o = getValueAt(row,col); // if the cell data is a link then open the url if (o instanceof TableLinkElement) { TableLinkElement tle = (TableLinkElement)o; URLopener.openURL(tle.url,tle.title); } }