View Javadoc

1   package org.lcsim.plugin.browser;
2   import org.lcsim.event.LCRelation;
3   
4   /**
5    *
6    * @author tonyj
7    */
8   public class LCRelationTableModel extends GenericTableModel
9   {
10     private static final String[] columns = {"From","To","Weight"};
11     private static Class klass = LCRelation.class;
12  
13     LCRelationTableModel()
14     {
15        super(klass,columns);
16     }
17     
18  }