1 29 30 31 package hero.client.grapheditor; 32 33 import java.awt.Graphics ; 34 35 import com.jgraph.plaf.basic.BasicGraphUI; 36 37 public class BonitaGraphUI extends BasicGraphUI { 38 39 protected void paintBackground(Graphics g) { 40 super.paintBackground(g); 41 g.drawImage(Frame.getFrame().getWorkflowGraph().getBackgroundImage(),0,0,1280,800,Frame.getFrame().getWorkflowGraph()); 42 } 43 44 } 45 | Popular Tags |