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