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