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