Interface ExtensibilityContent
-
- All Known Implementing Classes:
DefaultExtensibilityContent
public interface ExtensibilityContentDefines an object that can be have character strings appended to it and flushed. At its most basic level a
ExtensibilityContentcould just be aStringBuilderbut it is provided to allowContentModelElementsthe capability to accept character strings that are then manipulated before being flushed.This interface has primarily been introduced to support the capability of building up merged JSON strings which can then be output as a single JavaScript command
- Author:
- David Draper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidflush()Should be implemented to flush the content that has been constructedvoidwrite(char[] cbuf, int off, int len)Should be implemented to allow content to be appended
-