1 18 package org.apache.batik.bridge; 19 20 import org.apache.batik.gvt.GraphicsNode; 21 import org.w3c.dom.Element ; 22 23 30 public interface GraphicsNodeBridge extends Bridge { 31 32 41 GraphicsNode createGraphicsNode(BridgeContext ctx, Element e); 42 43 54 void buildGraphicsNode(BridgeContext ctx, Element e, GraphicsNode node); 55 56 60 boolean isComposite(); 61 62 66 boolean getDisplay(Element e); 67 68 76 Bridge getInstance(); 77 78 } 79 | Popular Tags |