public List<org.w3c.dom.Node> process(org.w3c.dom.Document basedoc,
Format format, List<? extends Content> list) {
List<org.w3c.dom.Node> ret = new ArrayList<org.w3c.dom.Node>(
list.size());
FormatStack fstack = new FormatStack(format);
NamespaceStack nstack = new NamespaceStack();
for (Content c : list) {
fstack.push();
try {
org.w3c.dom.Node node = helperContentDispatcher(fstack, nstack,
basedoc, c);