Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenWidget.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenWidget.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenWidget.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenWidget.java Sun Jun 1 22:27:12 2008 @@ -76,7 +76,7 @@ if (Debug.verboseOn()) Debug.logVerbose("Reading Screen sub-widget with name: " + widgetElement.getNodeName(), module); } - public abstract void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException; + public abstract void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException; public abstract String rawString(); @@ -126,7 +126,7 @@ return subWidgets; } - public static void renderSubWidgetsString(List subWidgets, Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public static void renderSubWidgetsString(List subWidgets, Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { if (subWidgets == null) { return; } @@ -148,9 +148,9 @@ protected Map sectionMap; protected ScreenStringRenderer screenStringRenderer; protected Map<String, Object> context; - protected Writer writer; + protected Appendable writer; - public SectionsRenderer(Map sectionMap, Map<String, Object> context, Writer writer, ScreenStringRenderer screenStringRenderer) { + public SectionsRenderer(Map sectionMap, Map<String, Object> context, Appendable writer, ScreenStringRenderer screenStringRenderer) { this.sectionMap = sectionMap; this.context = context; this.writer = writer; @@ -203,7 +203,7 @@ } } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { // check the condition, if there is one boolean condTrue = true; if (this.condition != null) { @@ -282,7 +282,7 @@ this.subWidgets = ModelScreenWidget.readSubWidgets(this.modelScreen, subElementList); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { try { screenStringRenderer.renderContainerBegin(writer, context, this); @@ -376,7 +376,7 @@ } } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { boolean collapsed = initiallyCollapsed; if (this.collapsible) { String preferenceKey = getPreferenceKey(context) + "_collapsed"; @@ -460,7 +460,7 @@ this.shareScopeExdr = new FlexibleStringExpander(includeScreenElement.getAttribute("share-scope")); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { // if we are not sharing the scope, protect it using the MapStack boolean protectScope = !shareScope(context); if (protectScope) { @@ -565,7 +565,7 @@ } } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { // isolate the scope if (!(context instanceof MapStack)) { context = MapStack.create(context); @@ -643,7 +643,7 @@ this.subWidgets = ModelScreenWidget.readSubWidgets(this.modelScreen, subElementList); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { // render sub-widgets renderSubWidgetsString(this.subWidgets, writer, context, screenStringRenderer); } @@ -659,11 +659,11 @@ super(modelScreen, decoratorSectionElement); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { Map preRenderedContent = (Map) context.get("preRenderedContent"); if (preRenderedContent != null && preRenderedContent.containsKey(this.name)) { try { - writer.write((String) preRenderedContent.get(this.name)); + writer.append((String) preRenderedContent.get(this.name)); } catch (IOException e) { String errMsg = "Error rendering pre-rendered content in screen named [" + this.modelScreen.getName() + "]: " + e.toString(); Debug.logError(e, errMsg, module); @@ -703,7 +703,7 @@ this.styleExdr = new FlexibleStringExpander(labelElement.getAttribute("style")); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { try { screenStringRenderer.renderLabel(writer, context, this); } catch (IOException e) { @@ -744,7 +744,7 @@ this.shareScopeExdr = new FlexibleStringExpander(formElement.getAttribute("share-scope")); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { boolean protectScope = !shareScope(context); if (protectScope) { if (!(context instanceof MapStack)) { @@ -829,7 +829,7 @@ this.shareScopeExdr = new FlexibleStringExpander(treeElement.getAttribute("share-scope")); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { boolean protectScope = !shareScope(context); if (protectScope) { if (!(context instanceof MapStack)) { @@ -878,7 +878,7 @@ StringBuffer renderBuffer = new StringBuffer(); modelTree.renderTreeString(renderBuffer, context, treeStringRenderer); try { - writer.write(renderBuffer.toString()); + writer.append(renderBuffer.toString()); } catch (IOException e) { String errMsg = "Error rendering included tree named [" + name + "] at location [" + location + "]: " + e.toString(); Debug.logError(e, errMsg, module); @@ -933,7 +933,7 @@ } } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws GeneralException, IOException { ModelScreenWidget subWidget = null; if (screenStringRenderer instanceof FoScreenRenderer) { subWidget = (ModelScreenWidget)subWidgets.get("xsl-fo"); @@ -994,7 +994,7 @@ this.border = subContentElement.getAttribute("border"); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { try { // pushing the contentId on the context as "contentId" is done // because many times there will be embedded "subcontent" elements @@ -1128,7 +1128,7 @@ this.xmlEscape = "true".equals(subContentElement.getAttribute("xml-escape")); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { try { screenStringRenderer.renderSubContentBegin(writer, context, this); screenStringRenderer.renderSubContentBody(writer, context, this); @@ -1181,7 +1181,7 @@ this.locationExdr = new FlexibleStringExpander(menuElement.getAttribute("location")); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws IOException { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) throws IOException { // try finding the menuStringRenderer by name in the context in case one was prepared and put there MenuStringRenderer menuStringRenderer = (MenuStringRenderer) context.get("menuStringRenderer"); // if there was no menuStringRenderer put in place, now try finding the request/response in the context and creating a new one @@ -1272,7 +1272,7 @@ } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { try { screenStringRenderer.renderLink(writer, context, this); } catch (IOException e) { @@ -1410,7 +1410,7 @@ setUrlMode(UtilFormatOut.checkEmpty(imageElement.getAttribute("url-mode"), "content")); } - public void renderWidgetString(Writer writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { + public void renderWidgetString(Appendable writer, Map<String, Object> context, ScreenStringRenderer screenStringRenderer) { try { screenStringRenderer.renderImage(writer, context, this); } catch (IOException e) { Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenRenderer.java Sun Jun 1 22:27:12 2008 @@ -67,11 +67,11 @@ public static final String module = ScreenRenderer.class.getName(); - protected Writer writer; + protected Appendable writer; protected MapStack context; protected ScreenStringRenderer screenStringRenderer; - public ScreenRenderer(Writer writer, MapStack context, ScreenStringRenderer screenStringRenderer) { + public ScreenRenderer(Appendable writer, MapStack context, ScreenStringRenderer screenStringRenderer) { this.writer = writer; this.context = context; if (this.context == null) this.context = MapStack.create(); @@ -121,9 +121,9 @@ modelScreen.renderScreenString(sw, context, screenStringRenderer); gwo = new GenericWidgetOutput(sw.toString()); screenCache.put(screenCombinedName, wcck, gwo); - writer.write(gwo.toString()); + writer.append(gwo.toString()); } else { - writer.write(gwo.toString()); + writer.append(gwo.toString()); } } else { modelScreen.renderScreenString(writer, context, screenStringRenderer); Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenStringRenderer.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenStringRenderer.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenStringRenderer.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ScreenStringRenderer.java Sun Jun 1 22:27:12 2008 @@ -28,25 +28,25 @@ * Widget Library - Screen String Renderer interface. */ public interface ScreenStringRenderer { - public void renderSectionBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException; - public void renderSectionEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException; - public void renderContainerBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException; - public void renderContainerEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException; - public void renderContentBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; - public void renderContentBody(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; - public void renderContentEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; - public void renderSubContentBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException; - public void renderSubContentBody(Writer writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException; - public void renderSubContentEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException; + public void renderSectionBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException; + public void renderSectionEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException; + public void renderContainerBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException; + public void renderContainerEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException; + public void renderContentBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; + public void renderContentBody(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; + public void renderContentEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; + public void renderSubContentBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException; + public void renderSubContentBody(Appendable writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException; + public void renderSubContentEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException; - public void renderLabel(Writer writer, Map<String, Object> context, ModelScreenWidget.Label label) throws IOException; - public void renderLink(Writer writer, Map<String, Object> context, ModelScreenWidget.Link link) throws IOException; - public void renderImage(Writer writer, Map<String, Object> context, ModelScreenWidget.Image image) throws IOException; + public void renderLabel(Appendable writer, Map<String, Object> context, ModelScreenWidget.Label label) throws IOException; + public void renderLink(Appendable writer, Map<String, Object> context, ModelScreenWidget.Link link) throws IOException; + public void renderImage(Appendable writer, Map<String, Object> context, ModelScreenWidget.Image image) throws IOException; - public void renderContentFrame(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; - public void renderScreenletBegin(Writer writer, Map<String, Object> context, boolean collapsed, ModelScreenWidget.Screenlet screenlet) throws IOException; - public void renderScreenletSubWidget(Writer writer, Map<String, Object> context, ModelScreenWidget subWidget, ModelScreenWidget.Screenlet screenlet) throws GeneralException, IOException; - public void renderScreenletEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Screenlet screenlet) throws IOException; + public void renderContentFrame(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException; + public void renderScreenletBegin(Appendable writer, Map<String, Object> context, boolean collapsed, ModelScreenWidget.Screenlet screenlet) throws IOException; + public void renderScreenletSubWidget(Appendable writer, Map<String, Object> context, ModelScreenWidget subWidget, ModelScreenWidget.Screenlet screenlet) throws GeneralException, IOException; + public void renderScreenletEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Screenlet screenlet) throws IOException; } Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextFormRenderer.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextFormRenderer.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextFormRenderer.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextFormRenderer.java Sun Jun 1 22:27:12 2008 @@ -70,43 +70,43 @@ this.response = response; } - public void appendWhitespace(Writer writer) throws IOException { + public void appendWhitespace(Appendable writer) throws IOException { // appending line ends for now, but this could be replaced with a simple space or something - writer.write("\r\n"); - //writer.write(' '); + writer.append("\r\n"); + //writer.append(' '); } - private void makeTextString(Writer writer, String widgetStyle, String text) throws IOException { + private void makeTextString(Appendable writer, String widgetStyle, String text) throws IOException { // TODO: escape characters here - writer.write(text); + writer.append(text); } - public void renderDisplayField(Writer writer, Map<String, Object> context, DisplayField displayField) throws IOException { + public void renderDisplayField(Appendable writer, Map<String, Object> context, DisplayField displayField) throws IOException { ModelFormField modelFormField = displayField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), displayField.getDescription(context)); } - public void renderHyperlinkField(Writer writer, Map<String, Object> context, HyperlinkField hyperlinkField) throws IOException { + public void renderHyperlinkField(Appendable writer, Map<String, Object> context, HyperlinkField hyperlinkField) throws IOException { ModelFormField modelFormField = hyperlinkField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), hyperlinkField.getDescription(context)); } - public void renderTextField(Writer writer, Map<String, Object> context, TextField textField) throws IOException { + public void renderTextField(Appendable writer, Map<String, Object> context, TextField textField) throws IOException { ModelFormField modelFormField = textField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textField.getDefaultValue(context))); } - public void renderTextareaField(Writer writer, Map<String, Object> context, TextareaField textareaField) throws IOException { + public void renderTextareaField(Appendable writer, Map<String, Object> context, TextareaField textareaField) throws IOException { ModelFormField modelFormField = textareaField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textareaField.getDefaultValue(context))); } - public void renderDateTimeField(Writer writer, Map<String, Object> context, DateTimeField dateTimeField) throws IOException { + public void renderDateTimeField(Appendable writer, Map<String, Object> context, DateTimeField dateTimeField) throws IOException { ModelFormField modelFormField = dateTimeField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, dateTimeField.getDefaultValue(context))); } - public void renderDropDownField(Writer writer, Map<String, Object> context, DropDownField dropDownField) throws IOException { + public void renderDropDownField(Appendable writer, Map<String, Object> context, DropDownField dropDownField) throws IOException { ModelFormField modelFormField = dropDownField.getModelFormField(); ModelForm modelForm = modelFormField.getModelForm(); String currentValue = modelFormField.getEntry(context); @@ -133,169 +133,169 @@ } } - public void renderCheckField(Writer writer, Map<String, Object> context, CheckField checkField) { + public void renderCheckField(Appendable writer, Map<String, Object> context, CheckField checkField) { } - public void renderRadioField(Writer writer, Map<String, Object> context, RadioField radioField) { + public void renderRadioField(Appendable writer, Map<String, Object> context, RadioField radioField) { } - public void renderSubmitField(Writer writer, Map<String, Object> context, SubmitField submitField) { + public void renderSubmitField(Appendable writer, Map<String, Object> context, SubmitField submitField) { } - public void renderResetField(Writer writer, Map<String, Object> context, ResetField resetField) { + public void renderResetField(Appendable writer, Map<String, Object> context, ResetField resetField) { } - public void renderHiddenField(Writer writer, Map<String, Object> context, HiddenField hiddenField) { + public void renderHiddenField(Appendable writer, Map<String, Object> context, HiddenField hiddenField) { } - public void renderHiddenField(Writer writer, Map<String, Object> context, ModelFormField modelFormField, String value) { + public void renderHiddenField(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, String value) { } - public void renderIgnoredField(Writer writer, Map<String, Object> context, IgnoredField ignoredField) { + public void renderIgnoredField(Appendable writer, Map<String, Object> context, IgnoredField ignoredField) { } - public void renderFieldTitle(Writer writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { + public void renderFieldTitle(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getTitle(context)); } - public void renderSingleFormFieldTitle(Writer writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { + public void renderSingleFormFieldTitle(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { renderFieldTitle(writer, context, modelFormField); } - public void renderFormOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormClose(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderMultiFormClose(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderMultiFormClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatListWrapperOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatListWrapperOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatListWrapperClose(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatListWrapperClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatHeaderRowOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatHeaderRowOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatHeaderRowClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatHeaderRowClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { this.appendWhitespace(writer); } - public void renderFormatHeaderRowCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) { + public void renderFormatHeaderRowCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) { } - public void renderFormatHeaderRowCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) { + public void renderFormatHeaderRowCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) { } - public void renderFormatHeaderRowFormCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatHeaderRowFormCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatHeaderRowFormCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatHeaderRowFormCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatHeaderRowFormCellTitleSeparator(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, boolean isLast) { + public void renderFormatHeaderRowFormCellTitleSeparator(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, boolean isLast) { } - public void renderFormatItemRowOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatItemRowOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatItemRowClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatItemRowClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { this.appendWhitespace(writer); } - public void renderFormatItemRowCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) { + public void renderFormatItemRowCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) { } - public void renderFormatItemRowCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) { + public void renderFormatItemRowCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) { } - public void renderFormatItemRowFormCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatItemRowFormCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatItemRowFormCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatItemRowFormCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatSingleWrapperOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatSingleWrapperOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatSingleWrapperClose(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatSingleWrapperClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatFieldRowOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatFieldRowOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatFieldRowClose(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatFieldRowClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFormatFieldRowTitleCellOpen(Writer writer, Map<String, Object> context, ModelFormField modelFormField) { + public void renderFormatFieldRowTitleCellOpen(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) { } - public void renderFormatFieldRowTitleCellClose(Writer writer, Map<String, Object> context, ModelFormField modelFormField) { + public void renderFormatFieldRowTitleCellClose(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) { } - public void renderFormatFieldRowSpacerCell(Writer writer, Map<String, Object> context, ModelFormField modelFormField) { + public void renderFormatFieldRowSpacerCell(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) { } - public void renderFormatFieldRowWidgetCellOpen(Writer writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) { + public void renderFormatFieldRowWidgetCellOpen(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) { } - public void renderFormatFieldRowWidgetCellClose(Writer writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) { + public void renderFormatFieldRowWidgetCellClose(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) { } - public void renderFormatEmptySpace(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderFormatEmptySpace(Appendable writer, Map<String, Object> context, ModelForm modelForm) { // TODO } - public void renderTextFindField(Writer writer, Map<String, Object> context, TextFindField textFindField) throws IOException { + public void renderTextFindField(Appendable writer, Map<String, Object> context, TextFindField textFindField) throws IOException { ModelFormField modelFormField = textFindField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textFindField.getDefaultValue(context))); } - public void renderRangeFindField(Writer writer, Map<String, Object> context, RangeFindField rangeFindField) throws IOException { + public void renderRangeFindField(Appendable writer, Map<String, Object> context, RangeFindField rangeFindField) throws IOException { ModelFormField modelFormField = rangeFindField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, rangeFindField.getDefaultValue(context))); } - public void renderDateFindField(Writer writer, Map<String, Object> context, DateFindField dateFindField) throws IOException { + public void renderDateFindField(Appendable writer, Map<String, Object> context, DateFindField dateFindField) throws IOException { ModelFormField modelFormField = dateFindField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, dateFindField.getDefaultValue(context))); } - public void renderLookupField(Writer writer, Map<String, Object> context, LookupField lookupField) throws IOException { + public void renderLookupField(Appendable writer, Map<String, Object> context, LookupField lookupField) throws IOException { ModelFormField modelFormField = lookupField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, lookupField.getDefaultValue(context))); } - public void renderNextPrev(Writer writer, Map<String, Object> context, ModelForm modelForm) { + public void renderNextPrev(Appendable writer, Map<String, Object> context, ModelForm modelForm) { } - public void renderFileField(Writer writer, Map<String, Object> context, FileField textField) throws IOException { + public void renderFileField(Appendable writer, Map<String, Object> context, FileField textField) throws IOException { ModelFormField modelFormField = textField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textField.getDefaultValue(context))); } - public void renderPasswordField(Writer writer, Map<String, Object> context, PasswordField passwordField) { + public void renderPasswordField(Appendable writer, Map<String, Object> context, PasswordField passwordField) { } - public void renderImageField(Writer writer, Map<String, Object> context, ImageField imageField) { + public void renderImageField(Appendable writer, Map<String, Object> context, ImageField imageField) { // TODO } - public void renderFieldGroupOpen(Writer writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) { + public void renderFieldGroupOpen(Appendable writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) { // TODO } - public void renderFieldGroupClose(Writer writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) { + public void renderFieldGroupClose(Appendable writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) { // TODO } - public void renderBanner(Writer writer, Map<String, Object> context, ModelForm.Banner banner) { + public void renderBanner(Appendable writer, Map<String, Object> context, ModelForm.Banner banner) { // TODO } - public void renderHyperlinkTitle(Writer writer, Map<String, Object> context, ModelFormField modelFormField, String titleText) { + public void renderHyperlinkTitle(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, String titleText) { } } Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextScreenRenderer.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextScreenRenderer.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextScreenRenderer.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/text/TextScreenRenderer.java Sun Jun 1 22:27:12 2008 @@ -53,76 +53,76 @@ public TextScreenRenderer() {} - public void renderSectionBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException { + public void renderSectionBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException { // do nothing, this is just a place holder container for HTML } - public void renderSectionEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException { + public void renderSectionEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Section section) throws IOException { // do nothing, this is just a place holder container for HTML } - public void renderContainerBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException { + public void renderContainerBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException { } - public void renderContainerEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException { + public void renderContainerEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Container container) throws IOException { appendWhitespace(writer); } - public void renderLabel(Writer writer, Map<String, Object> context, ModelScreenWidget.Label label) throws IOException { + public void renderLabel(Appendable writer, Map<String, Object> context, ModelScreenWidget.Label label) throws IOException { String labelText = label.getText(context); if (UtilValidate.isEmpty(labelText)) { // nothing to render return; } - writer.write(labelText); + writer.append(labelText); appendWhitespace(writer); } - public void renderLink(Writer writer, Map<String, Object> context, ModelScreenWidget.Link link) throws IOException { + public void renderLink(Appendable writer, Map<String, Object> context, ModelScreenWidget.Link link) throws IOException { // TODO: not implemented } - public void renderImage(Writer writer, Map<String, Object> context, ModelScreenWidget.Image image) throws IOException { + public void renderImage(Appendable writer, Map<String, Object> context, ModelScreenWidget.Image image) throws IOException { // TODO: not implemented } - public void renderContentBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { + public void renderContentBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { // TODO: not implemented } - public void renderContentBody(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { + public void renderContentBody(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { // TODO: not implemented } - public void renderContentEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { + public void renderContentEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { // TODO: not implemented } - public void renderContentFrame(Writer writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { + public void renderContentFrame(Appendable writer, Map<String, Object> context, ModelScreenWidget.Content content) throws IOException { // TODO: not implemented } - public void renderSubContentBegin(Writer writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException { + public void renderSubContentBegin(Appendable writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException { // TODO: not implemented } - public void renderSubContentBody(Writer writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException { + public void renderSubContentBody(Appendable writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException { // TODO: not implemented } - public void renderSubContentEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException { + public void renderSubContentEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.SubContent content) throws IOException { // TODO: not implemented } - public void appendWhitespace(Writer writer) throws IOException { + public void appendWhitespace(Appendable writer) throws IOException { // appending line ends for now, but this could be replaced with a simple space or something - writer.write("\r\n"); + writer.append("\r\n"); } - public void renderScreenletBegin(Writer writer, Map<String, Object> context, boolean collapsed, ModelScreenWidget.Screenlet screenlet) throws IOException { + public void renderScreenletBegin(Appendable writer, Map<String, Object> context, boolean collapsed, ModelScreenWidget.Screenlet screenlet) throws IOException { // TODO: not implemented } - public void renderScreenletSubWidget(Writer writer, Map<String, Object> context, ModelScreenWidget subWidget, ModelScreenWidget.Screenlet screenlet) throws GeneralException { + public void renderScreenletSubWidget(Appendable writer, Map<String, Object> context, ModelScreenWidget subWidget, ModelScreenWidget.Screenlet screenlet) throws GeneralException { // TODO: not implemented } - public void renderScreenletEnd(Writer writer, Map<String, Object> context, ModelScreenWidget.Screenlet screenlet) throws IOException { + public void renderScreenletEnd(Appendable writer, Map<String, Object> context, ModelScreenWidget.Screenlet screenlet) throws IOException { // TODO: not implemented } } Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTree.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTree.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTree.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/ModelTree.java Sun Jun 1 22:27:12 2008 @@ -389,7 +389,7 @@ } - public void renderNodeString(Writer writer, Map<String, Object> context, + public void renderNodeString(Appendable writer, Map<String, Object> context, TreeStringRenderer treeStringRenderer, int depth, boolean isLast) throws IOException, GeneralException { boolean passed = true; @@ -807,7 +807,7 @@ this.styleExdr = new FlexibleStringExpander(labelElement.getAttribute("style")); } - public void renderLabelString(Writer writer, Map<String, Object> context, TreeStringRenderer treeStringRenderer) { + public void renderLabelString(Appendable writer, Map<String, Object> context, TreeStringRenderer treeStringRenderer) { try { treeStringRenderer.renderLabel(writer, context, this); } catch (IOException e) { @@ -882,7 +882,7 @@ } - public void renderLinkString(Writer writer, Map<String, Object> context, TreeStringRenderer treeStringRenderer) { + public void renderLinkString(Appendable writer, Map<String, Object> context, TreeStringRenderer treeStringRenderer) { try { treeStringRenderer.renderLink(writer, context, this); } catch (IOException e) { @@ -1034,7 +1034,7 @@ } - public void renderImageString(Writer writer, Map<String, Object> context, TreeStringRenderer treeStringRenderer) { + public void renderImageString(Appendable writer, Map<String, Object> context, TreeStringRenderer treeStringRenderer) { try { treeStringRenderer.renderImage(writer, context, this); } catch (IOException e) { Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/TreeStringRenderer.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/TreeStringRenderer.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/TreeStringRenderer.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/tree/TreeStringRenderer.java Sun Jun 1 22:27:12 2008 @@ -29,11 +29,11 @@ */ public interface TreeStringRenderer { - public void renderNodeBegin(Writer writer, Map<String, Object> context, ModelTree.ModelNode node, int depth, boolean isLast) throws IOException; - public void renderNodeEnd(Writer writer, Map<String, Object> context, ModelTree.ModelNode node) throws IOException; - public void renderLabel(Writer writer, Map<String, Object> context, ModelTree.ModelNode.Label label) throws IOException; - public void renderLink(Writer writer, Map<String, Object> context, ModelTree.ModelNode.Link link) throws IOException; - public void renderImage(Writer writer, Map<String, Object> context, ModelTree.ModelNode.Image image) throws IOException; - public void renderLastElement(Writer writer, Map<String, Object> context, ModelTree.ModelNode node) throws IOException; + public void renderNodeBegin(Appendable writer, Map<String, Object> context, ModelTree.ModelNode node, int depth, boolean isLast) throws IOException; + public void renderNodeEnd(Appendable writer, Map<String, Object> context, ModelTree.ModelNode node) throws IOException; + public void renderLabel(Appendable writer, Map<String, Object> context, ModelTree.ModelNode.Label label) throws IOException; + public void renderLink(Appendable writer, Map<String, Object> context, ModelTree.ModelNode.Link link) throws IOException; + public void renderImage(Appendable writer, Map<String, Object> context, ModelTree.ModelNode.Image image) throws IOException; + public void renderLastElement(Appendable writer, Map<String, Object> context, ModelTree.ModelNode node) throws IOException; public ScreenStringRenderer getScreenStringRenderer( Map<String, Object> context); } Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java?rev=662328&r1=662327&r2=662328&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/xml/XmlFormRenderer.java Sun Jun 1 22:27:12 2008 @@ -69,48 +69,48 @@ this.response = response; } - public void appendWhitespace(Writer writer) throws IOException { + public void appendWhitespace(Appendable writer) throws IOException { // appending line ends for now, but this could be replaced with a simple space or something - writer.write("\r\n"); - //writer.write(' '); + writer.append("\r\n"); + //writer.append(' '); } - private void makeTextString(Writer writer, String widgetStyle, String text) throws IOException { + private void makeTextString(Appendable writer, String widgetStyle, String text) throws IOException { // TODO: escape characters here - writer.write(text); + writer.append(text); } - public void renderDisplayField(Writer writer, Map<String, Object> context, DisplayField displayField) throws IOException { + public void renderDisplayField(Appendable writer, Map<String, Object> context, DisplayField displayField) throws IOException { ModelFormField modelFormField = displayField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), displayField.getDescription(context)); this.appendWhitespace(writer); } - public void renderHyperlinkField(Writer writer, Map<String, Object> context, HyperlinkField hyperlinkField) throws IOException { + public void renderHyperlinkField(Appendable writer, Map<String, Object> context, HyperlinkField hyperlinkField) throws IOException { ModelFormField modelFormField = hyperlinkField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), hyperlinkField.getDescription(context)); this.appendWhitespace(writer); } - public void renderTextField(Writer writer, Map<String, Object> context, TextField textField) throws IOException { + public void renderTextField(Appendable writer, Map<String, Object> context, TextField textField) throws IOException { ModelFormField modelFormField = textField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderTextareaField(Writer writer, Map<String, Object> context, TextareaField textareaField) throws IOException { + public void renderTextareaField(Appendable writer, Map<String, Object> context, TextareaField textareaField) throws IOException { ModelFormField modelFormField = textareaField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textareaField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderDateTimeField(Writer writer, Map<String, Object> context, DateTimeField dateTimeField) throws IOException { + public void renderDateTimeField(Appendable writer, Map<String, Object> context, DateTimeField dateTimeField) throws IOException { ModelFormField modelFormField = dateTimeField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, dateTimeField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderDropDownField(Writer writer, Map<String, Object> context, DropDownField dropDownField) throws IOException { + public void renderDropDownField(Appendable writer, Map<String, Object> context, DropDownField dropDownField) throws IOException { ModelFormField modelFormField = dropDownField.getModelFormField(); ModelForm modelForm = modelFormField.getModelForm(); String currentValue = modelFormField.getEntry(context); @@ -136,204 +136,204 @@ this.appendWhitespace(writer); } - public void renderCheckField(Writer writer, Map<String, Object> context, CheckField checkField) throws IOException { + public void renderCheckField(Appendable writer, Map<String, Object> context, CheckField checkField) throws IOException { } - public void renderRadioField(Writer writer, Map<String, Object> context, RadioField radioField) throws IOException { + public void renderRadioField(Appendable writer, Map<String, Object> context, RadioField radioField) throws IOException { } - public void renderSubmitField(Writer writer, Map<String, Object> context, SubmitField submitField) throws IOException { + public void renderSubmitField(Appendable writer, Map<String, Object> context, SubmitField submitField) throws IOException { } - public void renderResetField(Writer writer, Map<String, Object> context, ResetField resetField) throws IOException { + public void renderResetField(Appendable writer, Map<String, Object> context, ResetField resetField) throws IOException { } - public void renderHiddenField(Writer writer, Map<String, Object> context, HiddenField hiddenField) throws IOException { + public void renderHiddenField(Appendable writer, Map<String, Object> context, HiddenField hiddenField) throws IOException { } - public void renderHiddenField(Writer writer, Map<String, Object> context, ModelFormField modelFormField, String value) throws IOException { + public void renderHiddenField(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, String value) throws IOException { } - public void renderIgnoredField(Writer writer, Map<String, Object> context, IgnoredField ignoredField) throws IOException { + public void renderIgnoredField(Appendable writer, Map<String, Object> context, IgnoredField ignoredField) throws IOException { } - public void renderFieldTitle(Writer writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { + public void renderFieldTitle(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { } - public void renderSingleFormFieldTitle(Writer writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { + public void renderSingleFormFieldTitle(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { renderFieldTitle(writer, context, modelFormField); } - public void renderFormOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderMultiFormClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderMultiFormClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatListWrapperOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { - writer.write("<"); - writer.write(modelForm.getName()); - writer.write("Export>"); + public void renderFormatListWrapperOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + writer.append("<"); + writer.append(modelForm.getName()); + writer.append("Export>"); this.appendWhitespace(writer); } - public void renderFormatListWrapperClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { - writer.write("</"); - writer.write(modelForm.getName()); - writer.write("Export>"); + public void renderFormatListWrapperClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + writer.append("</"); + writer.append(modelForm.getName()); + writer.append("Export>"); this.appendWhitespace(writer); } - public void renderFormatHeaderRowOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatHeaderRowOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatHeaderRowClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatHeaderRowClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatHeaderRowCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) throws IOException { + public void renderFormatHeaderRowCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) throws IOException { } - public void renderFormatHeaderRowCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) throws IOException { + public void renderFormatHeaderRowCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) throws IOException { } - public void renderFormatHeaderRowFormCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatHeaderRowFormCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatHeaderRowFormCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatHeaderRowFormCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatHeaderRowFormCellTitleSeparator(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, boolean isLast) throws IOException { + public void renderFormatHeaderRowFormCellTitleSeparator(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, boolean isLast) throws IOException { } - public void renderFormatItemRowOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { - writer.write("<"); - writer.write(modelForm.getName()); - writer.write(">"); + public void renderFormatItemRowOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + writer.append("<"); + writer.append(modelForm.getName()); + writer.append(">"); this.appendWhitespace(writer); } - public void renderFormatItemRowClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { - writer.write("</"); - writer.write(modelForm.getName()); - writer.write(">"); + public void renderFormatItemRowClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + writer.append("</"); + writer.append(modelForm.getName()); + writer.append(">"); this.appendWhitespace(writer); } - public void renderFormatItemRowCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) throws IOException { - writer.write("<"); - writer.write(modelFormField.getName()); - writer.write(">"); + public void renderFormatItemRowCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField, int positionSpan) throws IOException { + writer.append("<"); + writer.append(modelFormField.getName()); + writer.append(">"); this.appendWhitespace(writer); } - public void renderFormatItemRowCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) throws IOException { - writer.write("</"); - writer.write(modelFormField.getName()); - writer.write(">"); + public void renderFormatItemRowCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm, ModelFormField modelFormField) throws IOException { + writer.append("</"); + writer.append(modelFormField.getName()); + writer.append(">"); this.appendWhitespace(writer); } - public void renderFormatItemRowFormCellOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatItemRowFormCellOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatItemRowFormCellClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatItemRowFormCellClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatSingleWrapperOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { - writer.write("<"); - writer.write(modelForm.getName()); - writer.write("Export>"); + public void renderFormatSingleWrapperOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + writer.append("<"); + writer.append(modelForm.getName()); + writer.append("Export>"); this.appendWhitespace(writer); } - public void renderFormatSingleWrapperClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { - writer.write("</"); - writer.write(modelForm.getName()); - writer.write("Export>"); + public void renderFormatSingleWrapperClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + writer.append("</"); + writer.append(modelForm.getName()); + writer.append("Export>"); this.appendWhitespace(writer); } - public void renderFormatFieldRowOpen(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatFieldRowOpen(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatFieldRowClose(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatFieldRowClose(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFormatFieldRowTitleCellOpen(Writer writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { + public void renderFormatFieldRowTitleCellOpen(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { } - public void renderFormatFieldRowTitleCellClose(Writer writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { + public void renderFormatFieldRowTitleCellClose(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { } - public void renderFormatFieldRowSpacerCell(Writer writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { + public void renderFormatFieldRowSpacerCell(Appendable writer, Map<String, Object> context, ModelFormField modelFormField) throws IOException { } - public void renderFormatFieldRowWidgetCellOpen(Writer writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) throws IOException { + public void renderFormatFieldRowWidgetCellOpen(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) throws IOException { } - public void renderFormatFieldRowWidgetCellClose(Writer writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) throws IOException { + public void renderFormatFieldRowWidgetCellClose(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, int positions, int positionSpan, Integer nextPositionInRow) throws IOException { } - public void renderFormatEmptySpace(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderFormatEmptySpace(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { // TODO } - public void renderTextFindField(Writer writer, Map<String, Object> context, TextFindField textFindField) throws IOException { + public void renderTextFindField(Appendable writer, Map<String, Object> context, TextFindField textFindField) throws IOException { ModelFormField modelFormField = textFindField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textFindField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderRangeFindField(Writer writer, Map<String, Object> context, RangeFindField rangeFindField) throws IOException { + public void renderRangeFindField(Appendable writer, Map<String, Object> context, RangeFindField rangeFindField) throws IOException { ModelFormField modelFormField = rangeFindField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, rangeFindField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderDateFindField(Writer writer, Map<String, Object> context, DateFindField dateFindField) throws IOException { + public void renderDateFindField(Appendable writer, Map<String, Object> context, DateFindField dateFindField) throws IOException { ModelFormField modelFormField = dateFindField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, dateFindField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderLookupField(Writer writer, Map<String, Object> context, LookupField lookupField) throws IOException { + public void renderLookupField(Appendable writer, Map<String, Object> context, LookupField lookupField) throws IOException { ModelFormField modelFormField = lookupField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, lookupField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderNextPrev(Writer writer, Map<String, Object> context, ModelForm modelForm) throws IOException { + public void renderNextPrev(Appendable writer, Map<String, Object> context, ModelForm modelForm) throws IOException { } - public void renderFileField(Writer writer, Map<String, Object> context, FileField textField) throws IOException { + public void renderFileField(Appendable writer, Map<String, Object> context, FileField textField) throws IOException { ModelFormField modelFormField = textField.getModelFormField(); this.makeTextString(writer, modelFormField.getWidgetStyle(), modelFormField.getEntry(context, textField.getDefaultValue(context))); this.appendWhitespace(writer); } - public void renderPasswordField(Writer writer, Map<String, Object> context, PasswordField passwordField) throws IOException { + public void renderPasswordField(Appendable writer, Map<String, Object> context, PasswordField passwordField) throws IOException { } - public void renderImageField(Writer writer, Map<String, Object> context, ImageField imageField) throws IOException { + public void renderImageField(Appendable writer, Map<String, Object> context, ImageField imageField) throws IOException { // TODO } - public void renderFieldGroupOpen(Writer writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) throws IOException { + public void renderFieldGroupOpen(Appendable writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) throws IOException { // TODO } - public void renderFieldGroupClose(Writer writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) throws IOException { + public void renderFieldGroupClose(Appendable writer, Map<String, Object> context, ModelForm.FieldGroup fieldGroup) throws IOException { // TODO } - public void renderBanner(Writer writer, Map<String, Object> context, ModelForm.Banner banner) throws IOException { + public void renderBanner(Appendable writer, Map<String, Object> context, ModelForm.Banner banner) throws IOException { // TODO } - public void renderHyperlinkTitle(Writer writer, Map<String, Object> context, ModelFormField modelFormField, String titleText) throws IOException { + public void renderHyperlinkTitle(Appendable writer, Map<String, Object> context, ModelFormField modelFormField, String titleText) throws IOException { } } |
Free forum by Nabble | Edit this page |