/* * MyCell.java * * Created on 2007/02/13, 0:08 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ import javax.swing.tree.MutableTreeNode; import org.jgraph.graph.AttributeMap; import org.jgraph.graph.DefaultGraphCell; public class MyCell extends DefaultGraphCell{ /** Creates a new instance of MyCell */ public MyCell() { this(null); } public MyCell(Object userObject) { this(userObject, null); } public MyCell(Object userObject, AttributeMap storageMap) { this(userObject, storageMap, null); } public MyCell(Object userObject, AttributeMap storageMap, MutableTreeNode[] children) { super(userObject, storageMap, children); } }