View Javadoc

1   /*
2    * SWOTGraphCell.java
3    *
4    * Created on 9. juli 2005, 13:15
5    */
6   
7   package com.vikash.firsttool.ProfileImpl;
8   
9   import javax.swing.tree.*;
10  /***
11   *
12   * @author  studajb
13   */
14  public class SWOTGraphCell extends IconGraphCell{
15     // TreeNode parent;
16      /*** Creates a new instance of AssetGraphCell */
17      public SWOTGraphCell() {
18      this(null);
19      }
20      public SWOTGraphCell(Object userobject) {
21          super(userobject);
22      }
23    
24  }
25