View Javadoc

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