View Javadoc

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