1 24 package org.ofbiz.widget.screen; 25 26 import java.io.IOException ; 27 import java.io.Writer ; 28 import java.util.Map ; 29 30 31 38 public interface ScreenStringRenderer { 39 public void renderSectionBegin(Writer writer, Map context, ModelScreenWidget.Section section) throws IOException ; 40 public void renderSectionEnd(Writer writer, Map context, ModelScreenWidget.Section section) throws IOException ; 41 public void renderContainerBegin(Writer writer, Map context, ModelScreenWidget.Container container) throws IOException ; 42 public void renderContainerEnd(Writer writer, Map context, ModelScreenWidget.Container container) throws IOException ; 43 public void renderContentBegin(Writer writer, Map context, ModelScreenWidget.Content content) throws IOException ; 44 public void renderContentBody(Writer writer, Map context, ModelScreenWidget.Content content) throws IOException ; 45 public void renderContentEnd(Writer writer, Map context, ModelScreenWidget.Content content) throws IOException ; 46 public void renderSubContentBegin(Writer writer, Map context, ModelScreenWidget.SubContent content) throws IOException ; 47 public void renderSubContentBody(Writer writer, Map context, ModelScreenWidget.SubContent content) throws IOException ; 48 public void renderSubContentEnd(Writer writer, Map context, ModelScreenWidget.SubContent content) throws IOException ; 49 50 public void renderLabel(Writer writer, Map context, ModelScreenWidget.Label label) throws IOException ; 51 public void renderLink(Writer writer, Map context, ModelScreenWidget.Link link) throws IOException ; 52 public void renderImage(Writer writer, Map context, ModelScreenWidget.Image image) throws IOException ; 53 54 public void renderContentFrame(Writer writer, Map context, ModelScreenWidget.Content content) throws IOException ; 55 } 56 57 | Popular Tags |