1 20 package org.enhydra.barracuda.core.comp.renderer; 21 22 import java.util.*; 23 import org.w3c.dom.*; 24 25 import org.enhydra.barracuda.core.comp.*; 26 27 30 public interface Renderer { 31 32 public Node createDefaultNode(Document doc, BComponent comp, ViewContext vc) throws UnsupportedFormatException; public Node addChildToParent(Node parent, Node child) throws InvalidNodeException; 35 public void renderComponent(BComponent comp, View view, ViewContext vc) throws RenderException; 36 37 } | Popular Tags |