1 10 11 package org.enhydra.jawe.graph; 12 13 import org.jgraph.JGraph; 14 import org.jgraph.graph.*; 15 16 import java.awt.*; 17 import java.awt.geom.Rectangle2D ; 18 19 22 public class ActivityView extends VertexView { 23 24 25 public static ActivityRenderer renderer = new ActivityRenderer(); 26 27 32 public ActivityView(Object cell, JGraph graph, CellMapper cm) { 33 super(cell, graph, cm); 34 } 35 36 39 public CellViewRenderer getRenderer() { 40 return renderer; 41 } 42 43 46 public Rectangle2D getBounds() { return bounds; 48 } 49 50 } 51 52 53 | Popular Tags |