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