Package org.ribax.utils.table

Examples of org.ribax.utils.table.TableLinkElement


                    } 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;
            }
          }
         
View Full Code Here


           
      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);
      }
    }
View Full Code Here

TOP

Related Classes of org.ribax.utils.table.TableLinkElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.