View Javadoc

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