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 18 21 public class BlockActivityView extends ActivityView { 22 23 24 public static BlockActivityRenderer renderer = new BlockActivityRenderer(); 25 26 31 public BlockActivityView(Object cell, JGraph graph, CellMapper cm) { 32 super(cell, graph, cm); 33 } 34 35 38 public CellViewRenderer getRenderer() { 39 return renderer; 40 } 41 42 } 43 44 45 | Popular Tags |