00001 /* 00002 * Renderer.java 00003 * 00004 * Created on March 18, 2009, 10:14 AM 00005 * 00006 * Copyright 2009 Online Nederland Breedband B.V. 00007 * See the COPYRIGHT file for redistribution and use restrictions. 00008 * Authors: Guillermo Christen <guillermo.christen@is.online.nl> 00009 */ 00010 package dochelper; 00011 00012 import dochelper.exceptions.ResourceUnavailableException; 00013 00018 public interface Renderer extends Configurable { 00019 00034 public void execute(ResultNode doc) throws ResourceUnavailableException; 00035 00044 public void addDocumentSection(DocumentSection docsection, String key); 00045 00046 }